tracman-server/views/forgot.html

29 lines
717 B
HTML
Raw Normal View History

{% extends 'templates/base.html' %}
2017-05-05 20:40:14 -06:00
{% block title %}{{super()}} | Reset Password{% endblock %}
2017-08-22 17:32:25 -06:00
{% block head %}
{{super()}}
2017-08-22 17:32:25 -06:00
<link rel="stylesheet" type="text/css" href="/static/css/.form.min.css">
{% endblock %}
{% block main %}
<section class='container'>
<h1>Reset password</h1>
<p>Enter your email below to recieve a link to reset your password. </p>
<form method="post" role="form">
2018-03-04 13:15:43 -07:00
<input type="hidden" name="_csrf" value="{{csrfToken}}">
2017-05-05 20:40:14 -06:00
<div class='form-group'>
<label for="email">Email:</label>
<input name="email" type="email" value="{{email}}">
</div>
2017-05-05 20:40:14 -06:00
<input class='main btn' type="submit" value="Go" style="display:block; margin:auto">
</form>
</section>
2017-08-22 17:32:25 -06:00
{% endblock %}