]> git.datanom.net - wpp.git/blobdiff - app/templates/register.html
Base user framework finished
[wpp.git] / app / templates / register.html
diff --git a/app/templates/register.html b/app/templates/register.html
new file mode 100644 (file)
index 0000000..1385ea5
--- /dev/null
@@ -0,0 +1,25 @@
+{% extends "base.html" %}
+
+{% block title %}
+{{ title }}
+{% endblock %}
+
+{% block content %}
+    {% include 'flash.html' %}
+    <div class="container">
+        <div class="login-register-page">
+            <div class="well">
+                <form class="form-signin" method="POST" action="/register">
+                    <h3 class="form-signin-heading center">Register</h3>
+                    {{ form.hidden_tag() }}
+                    {{ wtf.form_field(form.name, placeholder="Name") }}
+                    {{ wtf.form_field(form.email, placeholder="Email") }}
+                    {{ wtf.form_field(form.username, placeholder="Username") }}
+                    {{ wtf.form_field(form.password, placeholder="Password") }}
+                    {{ wtf.form_field(form.passwordchk, placeholder="Password check") }}
+                    {{ wtf.form_field(form.submit_btn, class="btn btn-lg btn-primary btn-block") }}
+                </form>
+            </div>
+        </div>
+    </div> <!-- /container -->
+{% endblock %}
This page took 0.028932 seconds and 5 git commands to generate.