Files
CTFd/templates/reset_password.html
2015-01-01 00:45:25 -05:00

34 lines
924 B
HTML
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

{% extends "base.html" %}
{% block content %}
<div class="row">
<h1>Reset Password</h1>
<div class="row">
{% for error in errors %}
<div class="large-8 large-centered columns">
<div data-alert class="alert-box alert radius centered text-center">
<span>{{ error }}</span>
<a href="#" class="close">×</a>
</div>
</div>
{% endfor %}
</div>
{% if mode %}
<form method="POST">
<input class="radius" type='password' name='password' placeholder='Password'><br/>
<button class="radius" type='submit'>Reset Password</button>
</form>
{% else %}
<form method="POST">
<input class="radius" type='text' name='email' placeholder='Email'><br/>
<button class="radius" type='submit'>Reset Password</button>
</form>
{% endif %}
</div>
{% endblock %}
{% block scripts %}
{% endblock %}