2020-11-11 13:27:18 -05:00
|
|
|
<!DOCTYPE html>
|
|
|
|
<html lang="en">
|
|
|
|
<head>
|
|
|
|
<title>Stickup</title>
|
|
|
|
<meta name="viewport" content="width=device-width, initial-scale=0.8">
|
|
|
|
<meta name="description" content="An email management frontend.">
|
|
|
|
</head>
|
|
|
|
<body>
|
|
|
|
<h1>This is a stickup!</h1>
|
2020-11-17 15:52:55 -05:00
|
|
|
{% for record in user_data %}
|
2020-11-17 12:46:58 -05:00
|
|
|
<div>Your email address is {{ record['email'] }}</div>
|
|
|
|
{% endfor %}
|
2020-11-17 15:52:55 -05:00
|
|
|
{% if result %}
|
|
|
|
<div>{{ result['message'] }}</div>
|
|
|
|
{% endif %}
|
|
|
|
<form method="post" enctype="application/x-www-form-urlencoded">
|
|
|
|
<table>
|
|
|
|
<tr>
|
|
|
|
<td><label for="current_password">Current password</label></td>
|
|
|
|
<td><input id="current_password" name="current_password" type="password"></td>
|
|
|
|
</tr>
|
|
|
|
<tr>
|
|
|
|
<td><label for="new_password">New password</label></td>
|
|
|
|
<td><input id="new_password" name="new_password" type="password"></td>
|
|
|
|
</tr>
|
|
|
|
<tr>
|
|
|
|
<td><label for="verify_new_password">Verify new password</label></td>
|
|
|
|
<td><input id="verify_new_password" name="verify_new_password" type="password"></td>
|
|
|
|
</tr>
|
|
|
|
<tr>
|
|
|
|
<td><input type="submit" value="Submit"></td>
|
|
|
|
</tr>
|
|
|
|
</table>
|
|
|
|
</form>
|
2020-11-11 13:27:18 -05:00
|
|
|
</body>
|
|
|
|
</html>
|