summaryrefslogtreecommitdiffstats
path: root/templates/registration/login.html
blob: 81f2463b29620e8623d74256f64a1b3279e31a6c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
{% extends "base.html" %}
{% load static from staticfiles %}

{% block title %}Arch Linux - Developer Login{% endblock %}

{% block content %}
<div id="dev-login" class="box">
    <h2>Developer Login</h2>

    <form id="dev-login-form" method="post">{% csrf_token %}
        <fieldset>
            <legend>Please enter your credentials to login.</legend>
            {{ form.as_p }}
            <p><label></label><input type="submit" value="Login"/></p>
        </fieldset>
    </form>
</div>
{% endblock %}