blob: 14605f9f896bf0f530b0ec587b45f5d595eb0c12 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
|
{% extends "about.html" %}
{% block title %}Password Change{%endblock%}
{% block content %}
<table>
<tr>
<td width="60%">
{{ super() }}
</td>
<td width="40%">
<b>Welcome, {{name}}</b>
<hr>
<b>Type your new password below:</b>
<form class="p-2" action="#" method="POST">
<div class="form-group">
<input type="password" class="form-control" name="password" id="password" placeholder="Password" required>
<div class="dropdown-divider"></div>
<button type="submit" class="btn btn-primary btn-block">Change my password</button>
</div>
</form>
</td>
</tr>
</table>
{% endblock %}
|