14 lines
421 B
Plaintext
14 lines
421 B
Plaintext
|
<%- include('partials/header') %>
|
||
|
|
||
|
<h1>Forgot Password</h1>
|
||
|
<form action="/send-password" method="post">
|
||
|
<div class="mb-3">
|
||
|
<label for="email" class="form-label">Email</label>
|
||
|
<input type="email" class="form-control" id="email" name="email" required>
|
||
|
</div>
|
||
|
<button type="submit" class="btn btn-primary">Send Reset Link</button>
|
||
|
</form>
|
||
|
<a href="/login">Back to Login</a>
|
||
|
|
||
|
<%- include('partials/footer') %>
|