blob: 5d0482a3feb4564757be038b70ef54947e90eba5 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
|
{% extends "base.html" %}
{% block content %}
<div class="page-header">
<h1>Login</h1>
</div>
{% if form.errors %}
<div class='alert'>
<p>Your username and password didn't match. Please try again.</p>
</div>
{% endif %}
<form class="form-horizontal" method="post" action="{% url "rpki.gui.views.login" %}">
{% csrf_token %}
{% include "app/bootstrap_form.html" %}
<input type="hidden" name="next" value="{{ next }}" />
<div class="form-actions">
<input type="submit" value="Login" class="btn btn-primary" />
</div>
</form>
<a href="{% url "password_reset" %}">Forgot your password?</a>
{% endblock %}
|