From 23c99a74723b50d3a9af8886ebaae4e4cc9236c1 Mon Sep 17 00:00:00 2001 From: Thayer Williams Date: Tue, 16 Mar 2010 11:17:08 -0700 Subject: Redesigned login and logout pages Signed-off-by: Dan McGee --- templates/registration/login.html | 31 +++++++++++++++---------------- templates/registration/logout.html | 7 +++---- 2 files changed, 18 insertions(+), 20 deletions(-) (limited to 'templates/registration') diff --git a/templates/registration/login.html b/templates/registration/login.html index b3b264c..2f62656 100644 --- a/templates/registration/login.html +++ b/templates/registration/login.html @@ -1,23 +1,22 @@ {% extends "base.html" %} +{% block title %}Arch Linux - Developer Login{% endblock %} {% block content %} +
-
-

Developer Login

-{% if form.has_errors %} -

Your username and password didn't match. Please try again.

-{% endif %} -

+

Developer Login

-
- - - - - -
{{ form.username }}
{{ form.password }}
-
-
+ {% if form.has_errors %} + + {% endif %} -{% endblock %} +
+
+ Enter login credentials + {{ form.as_p }} +

+
+
+
+{% endblock %} diff --git a/templates/registration/logout.html b/templates/registration/logout.html index 2b82986..f8e0762 100644 --- a/templates/registration/logout.html +++ b/templates/registration/logout.html @@ -1,10 +1,9 @@ {% extends "base.html" %} +{% block title %}Arch Linux - Logout successful{% endblock %} {% block content %} - -
-You've been logged out. +
+

Logout successful.

- {% endblock %} -- cgit v1.2.3-24-g4f1b