]> git.datanom.net - pwp.git/blob - app/templates/register.html
initial commit
[pwp.git] / app / templates / register.html
1 {% extends "base.html" %}
2
3 {% block title %}
4 {{ title }}
5 {% endblock %}
6
7 {% block content %}
8 {% include 'flash.html' %}
9 <div class="container">
10 <div class="login-register-page">
11 <div class="well">
12 <form class="form-signin" method="POST" action="/register">
13 <h3 class="form-signin-heading center">Register</h3>
14 {{ form.hidden_tag() }}
15 {{ wtf.form_field(form.name, placeholder="Name", autofocus="autofocus") }}
16 {{ wtf.form_field(form.email, placeholder="Email") }}
17 {{ wtf.form_field(form.username, placeholder="Username") }}
18 {{ wtf.form_field(form.password, placeholder="Password") }}
19 {{ wtf.form_field(form.passwordchk, placeholder="Password check") }}
20 {{ wtf.form_field(form.register, class="btn btn-lg btn-primary btn-block") }}
21 </form>
22 </div>
23 </div>
24 </div> <!-- /container -->
25 {% endblock %}
This page took 0.057488 seconds and 6 git commands to generate.