From 3a680b5d2442268ab117c0f98f21a039d4544bd8 Mon Sep 17 00:00:00 2001 From: Jayaram Pai Date: Wed, 11 Dec 2013 15:31:24 +0530 Subject: base one --- static/forums/templates/user-login.html | 43 ++++++++++++++++++++++++++++++--- 1 file changed, 39 insertions(+), 4 deletions(-) (limited to 'static/forums/templates') diff --git a/static/forums/templates/user-login.html b/static/forums/templates/user-login.html index 6ac4fee..27f5a1f 100644 --- a/static/forums/templates/user-login.html +++ b/static/forums/templates/user-login.html @@ -1,4 +1,39 @@ -
{% csrf_token %} - {{ form.as_p }} - -
+{% extends "website/templates/base.html" %} +{% load widget_tweaks %} +{% block content %} +


+
+
+

Please login with your
Spoken-Tutorial.org account.

+
{% csrf_token %} + {% with WIDGET_ERROR_CLASS='field_error' %} +
+ + {% render_field form.username class+="form-control" %} +
+ +
+ + {% render_field form.password class+="form-control" %} +
+ + + {% endwith %} +
+
+ +
+

Rules and Regulations

+ +

Dont have a Spoken-Tutorial.org account yet ?

+

+ Register +

+
+
+{% endblock %} -- cgit