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.
 
 
 
 
 

18 lines
527 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">
{% if current_user.password_hash %}
<h1>Change Password</h1>
{% else %}
<h1>Set Password</h1>
{% endif %}
{{ wtf.quick_form(form, button_map={'submit': 'primary'}) }}
<br>
</div>
<div class="col-xs-0 col-md-7"></div>
</div>
{% endblock %}