]>
Commit | Line | Data |
---|---|---|
e5424f29 MR |
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=""> | |
13 | <h3 class="form-signin-heading center">Please sign in</h3> | |
14 | {{ form.hidden_tag() }} | |
15 | {{ wtf.form_field(form.username, placeholder="Username", autofocus="autofocus") }} | |
16 | {{ wtf.form_field(form.password, placeholder="Password") }} | |
17 | {{ wtf.form_field(form.login, class="btn btn-lg btn-primary btn-block") }} | |
18 | </form> | |
19 | <p class="center"><a class="href" href="{{url_for('resetpwd')}}">[Forgot password]</a> | <a class="href" href="{{url_for('register')}}">[Register]</a></p> | |
20 | </div> | |
21 | </div> | |
22 | </div> <!-- /container --> | |
23 | {% endblock %} |