datatracker/ietf/templates/registration/login.html

35 lines
775 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 %}
<div class="col-md-2 col-sm-0"></div>
<div class="col-md-8 col-sm-12">
<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>
</div>
<div class="col-md-2 col-sm-0"></div>
{% endblock %}