change styling on template reset.html

This commit is contained in:
Leticia Portella 2018-09-26 18:45:47 -03:00
parent 1e6c7adcbb
commit 49a080f9e8

View file

@ -1,38 +1,34 @@
{% extends "page.html" %} {% extends "page.html" %}
{% block main %} {% block main %}
<div class="container">
<div class="container"> <form action="{{post_url}}" method="post" role="form">
<form action="{{post_url}}" method="post" role="form"> <h2>
<h2 class="auth-form-header"> Change Password
Change Password </h2>
</h2> <div>
<div class='auth-form-body'> <div class="form-group">
<label for='password_input'>New Password:</label>
<input
<label for='password_input'>New Password:</label> type="password"
<input class="form-control"
type="password" name="password"
class="form-control" id="password_input"
name="password" tabindex="2"
id="password_input" />
tabindex="2" </div>
/> <div class="form-group">
<input
<input type="submit"
type="submit" id="login_submit"
id="login_submit" class='btn btn-jupyter'
class='btn btn-jupyter' value='Change Password'
value='Sign In' tabindex="3"
tabindex="3" />
/> </div>
</div>
</form>
{% if result %}
<div class="alert alert-success" role="alert">{{result_message}}</div>
{% endif %}
</div> </div>
</form> {% endblock %}
{% if result %}
<p>
{{result_message}}
</p>
{% endif %}
</div>
{% endblock %}