mirror of
https://github.com/hoshikawa2/rfp_response_automation.git
synced 2026-03-06 10:11:08 +00:00
first commit
This commit is contained in:
20
files/templates/users/set_password.html
Normal file
20
files/templates/users/set_password.html
Normal file
@@ -0,0 +1,20 @@
|
||||
{% extends "base.html" %}
|
||||
{% block content %}
|
||||
|
||||
<div class="card">
|
||||
|
||||
<h2>Set Password</h2>
|
||||
|
||||
{% if expired %}
|
||||
<p>Link expired or invalid.</p>
|
||||
{% else %}
|
||||
<form method="post">
|
||||
<input type="password" name="password" placeholder="New password" required>
|
||||
<input type="password" name="password2" placeholder="Confirm password" required>
|
||||
<button class="btn btn-primary">Save</button>
|
||||
</form>
|
||||
{% endif %}
|
||||
|
||||
</div>
|
||||
|
||||
{% endblock %}
|
||||
Reference in New Issue
Block a user