1
0
mirror of https://github.com/tabler/tabler.git synced 2025-12-24 10:48:14 +04:00
Files
tabler/shared/includes/cards/forgot-password.html
2025-04-15 23:18:49 +02:00

19 lines
763 B
HTML

<form class="card card-md" action="{{ page | relative }}/" method="get" autocomplete="off" novalidate>
<div class="card-body">
<h2 class="card-title text-center mb-4">Forgot password</h2>
<p class="text-secondary mb-4">Enter your email address and your password will be reset and emailed to you.</p>
<div class="mb-3">
<label class="form-label">Email address</label>
<input type="email" class="form-control" placeholder="Enter email">
</div>
<div class="form-footer">
{% include "ui/button.html" text="Send me new password" block=true color="primary" icon="mail" %}
</div>
</div>
</form>
<div class="text-center text-secondary mt-3">
Forget it, <a href="{{ page | relative }}/sign-in.html">send me back</a> to the sign in screen.
</div>