aboutsummaryrefslogtreecommitdiff
path: root/templates/registration
diff options
context:
space:
mode:
authorMike Crute <mcrute@gmail.com>2012-12-04 16:21:32 -0500
committerMike Crute <mcrute@gmail.com>2012-12-11 15:27:46 -0500
commitbd95993653a1b94d07316e24a0f519d00f9359d6 (patch)
tree45f44092fde26ad38db1aaaf123d7e2173fa973e /templates/registration
parentab626f31a0645d87560d242a20dd60e01b3d3b46 (diff)
downloaddjango-precompiler-bd95993653a1b94d07316e24a0f519d00f9359d6.tar.bz2
django-precompiler-bd95993653a1b94d07316e24a0f519d00f9359d6.tar.xz
django-precompiler-bd95993653a1b94d07316e24a0f519d00f9359d6.zip
User can login and logout
Diffstat (limited to 'templates/registration')
-rw-r--r--templates/registration/logged_out.html6
-rw-r--r--templates/registration/login.html27
2 files changed, 33 insertions, 0 deletions
diff --git a/templates/registration/logged_out.html b/templates/registration/logged_out.html
new file mode 100644
index 0000000..b6908d4
--- /dev/null
+++ b/templates/registration/logged_out.html
@@ -0,0 +1,6 @@
1{% extends "base.html" %}
2
3{% block content %}
4<h1>You are logged out</h1>
5<p>You can go <a href="{% url 'home' %}">home</a>.</p>
6{% endblock %}
diff --git a/templates/registration/login.html b/templates/registration/login.html
new file mode 100644
index 0000000..37893a9
--- /dev/null
+++ b/templates/registration/login.html
@@ -0,0 +1,27 @@
1{% extends "base.html" %}
2
3{% block content %}
4
5{% if form.errors %}
6<p>Your username and password didn't match. Please try again.</p>
7{% endif %}
8
9<h1>Login</h1>
10<form method="post" action="{% url 'auth:login' %}">
11 {% csrf_token %}
12 <table>
13 <tr>
14 <td>{{ form.username.label_tag }}</td>
15 <td>{{ form.username }}</td>
16 </tr>
17 <tr>
18 <td>{{ form.password.label_tag }}</td>
19 <td>{{ form.password }}</td>
20 </tr>
21 </table>
22
23 <input type="submit" value="login" />
24 <input type="hidden" name="next" value="{{ next }}" />
25</form>
26
27{% endblock %}