aboutsummaryrefslogtreecommitdiffstats
path: root/97suifangqa/templates/registration/signup.html
diff options
context:
space:
mode:
authorAlvin Li <liweitianux@gmail.com>2013-08-13 14:13:24 +0800
committerAlvin Li <liweitianux@gmail.com>2013-08-13 14:13:24 +0800
commit9636d4a6767f49384d5c386bc3f1142c88b90613 (patch)
tree3a70f6d9e4be1791d36c87cc7cbfd1d5aa2b39dd /97suifangqa/templates/registration/signup.html
parent9383d9a8a5988d071766c3d08a5c946e9c5b02ae (diff)
download97dev-9636d4a6767f49384d5c386bc3f1142c88b90613.tar.bz2
cloned from 'bitbucket', 2013/08/13
Diffstat (limited to '97suifangqa/templates/registration/signup.html')
-rw-r--r--97suifangqa/templates/registration/signup.html24
1 files changed, 24 insertions, 0 deletions
diff --git a/97suifangqa/templates/registration/signup.html b/97suifangqa/templates/registration/signup.html
new file mode 100644
index 0000000..935dde2
--- /dev/null
+++ b/97suifangqa/templates/registration/signup.html
@@ -0,0 +1,24 @@
+{% extends "picture-base.html" %}
+{% load staticfiles %}
+{% block bodyclasses %}{{ block.super }} registration signup{% endblock %}
+{% block othercss %}
+<link rel="stylesheet" href="{% static "stylesheets/sass/registration.css" %}">
+{% endblock %}
+{% block body %}
+<h2>注册97随访 科学了解乙肝治疗</h2>
+<form method="post">{% csrf_token %}
+ <table class="reg-form register-form">
+ {% for item in form %}
+ <tr>
+ <td>
+ <input type="{{ item.field.widget.input_type }}" name="{{ item.name }}" {% if item.field.widget.input_type == "text" %}value="{{ item.value|default_if_none:"" }}"{% endif %} placeholder="{{ item.label }}" class="{{ item.name }}">
+ </td>
+ <td class="error">{{ item.errors|join:"" }}</td>
+ </tr>
+ {% endfor %}
+ </table>
+
+ <input type="submit" value="注册完毕" class="submit register"/> &emsp; |
+ &emsp; <a href="{% url apps.profile.views.login %}">已有账号</a>
+</form>
+{% endblock body %}