You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
21 lines
772 B
21 lines
772 B
{% extends 'base.html' %} |
|
{% import 'bootstrap/wtf.html' as wtf %} |
|
|
|
{% block app_content %} |
|
<div class="row"> |
|
<div class="col-xs-0 col-md-1"></div> |
|
<div class="col-xs-8 col-md-4"> |
|
<h1>Sign In</h1> |
|
<form action="" method="post" class="form" role="form"> |
|
{{ form.hidden_tag() }} |
|
{{ wtf.form_field(form.username) }} |
|
{{ wtf.form_field(form.password) }} |
|
{{ wtf.form_field(form.remember_me) }} |
|
{{ wtf.form_field(form.submit, class='btn btn-primary') }} |
|
</form> |
|
<br> |
|
<p>New User? <a href="{{ url_for('auth.register') }}">Click to Register!</a></p> |
|
</div> |
|
<div class="col-xs-0 col-md-7"></div> |
|
</div> |
|
{% endblock %}
|
|
|