smilecheck / templates /forgot.html
abhicodes's picture
Upload 63 files
b75f547
raw
history blame contribute delete
No virus
516 Bytes
{% extends 'layout.html' %}
{% block title %} Forgot Password {% endblock %}
{% block content %}
<br><br><br>
<div class="forgot1">
<form action="/forgot" method="POST">
<label>Email:</label>
<input id="email-inpt" type="email" class="form-control" name="email" required>
<p style="text-align:center; color:red;">{{ mess }}</p>
<center><button type="submit" class="btn btn-primary verify">Verify!</button></center>
</form>
</div>
{% endblock %}