32 lines
646 B
HTML
32 lines
646 B
HTML
{% extends "base.html" %}
|
|
{# Copyright The IETF Trust 2015, All Rights Reserved #}
|
|
{% load origin %}
|
|
|
|
{% load bootstrap3 %}
|
|
|
|
{% block title %}Sign in{% endblock %}
|
|
|
|
{% block content %}
|
|
{% origin %}
|
|
<h1>Sign in</h1>
|
|
|
|
<form method="post">
|
|
{% csrf_token %}
|
|
{% bootstrap_form form %}
|
|
|
|
{% buttons %}
|
|
<table class="col-md-12">
|
|
<tr>
|
|
<td >
|
|
<button type="submit" class="btn btn-primary">Sign in</button>
|
|
</td>
|
|
<td >
|
|
Forgot your password? <a href="{% url 'ietf.ietfauth.views.password_reset' %}">Request a reset</a>.
|
|
</td>
|
|
</tr>
|
|
</table>
|
|
{% endbuttons %}
|
|
</form>
|
|
|
|
{% endblock %}
|