summaryrefslogtreecommitdiff
path: root/scipy/templates/login.html
diff options
context:
space:
mode:
authorhardythe12013-10-09 14:50:00 +0530
committerhardythe12013-10-09 14:50:00 +0530
commitc949dc9df3d57fa02a34d1eef7176436aefa23d9 (patch)
tree0cca1899f3f370f56321cdd379c4d3f6d467e1d7 /scipy/templates/login.html
downloadSciPy2013-c949dc9df3d57fa02a34d1eef7176436aefa23d9.tar.gz
SciPy2013-c949dc9df3d57fa02a34d1eef7176436aefa23d9.tar.bz2
SciPy2013-c949dc9df3d57fa02a34d1eef7176436aefa23d9.zip
Initializing repo with all the files
Diffstat (limited to 'scipy/templates/login.html')
-rw-r--r--scipy/templates/login.html12
1 files changed, 12 insertions, 0 deletions
diff --git a/scipy/templates/login.html b/scipy/templates/login.html
new file mode 100644
index 0000000..76964b1
--- /dev/null
+++ b/scipy/templates/login.html
@@ -0,0 +1,12 @@
+{% extends 'page.html' %}
+{% block content %}
+<div class="large-6 large-centered columns">
+ <form class="form-signin" action="/accounts/login/" method="POST" enctype="multipart/form-data"> {% csrf_token %}
+ <h3 class="form-signin-heading">Please sign in</h3>
+ {{ form.as_p }}
+ <input type="hidden" name = "next" value="{{ next }}">
+ <button class="success expand" type="submit">Sign in</button>
+ </form>
+ <h6>Dont have an scipy account? <a href="/accounts/register"><u>Register Here.</u></a></h6>
+</div>
+{% endblock %}