1 {% extends
"base.html" %}
8 {% include 'flash.html' %}
9 <div class=
"container">
10 <div class=
"login-register-page">
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") }}
24 </div> <!-- /container -->