File size: 469 Bytes
5325fcc
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
{% extends "base.html" %}
{% block content %}

<p>
    You must identify yourself first! We use a highly secured protocol
    where you just decide your username, and that's it. No password, no encryption,
    just pure trust.
</p>

{% if error %}
<p class="error">{{error}}</p>
{% endif %}
<form method="post" class="simple_form">
    <label> Username
        <input type="text" name="user">
    </label>
    <input type="submit" value="login">
<form>

{% endblock %}