| 1 |
{% extends "base.html" %} |
| 2 |
|
| 3 |
{% block title %}{{ title }} - Makenotwork{% endblock %} |
| 4 |
|
| 5 |
{% block body_attrs %} class="centered-page"{% endblock %} |
| 6 |
|
| 7 |
{% block head %} |
| 8 |
<meta name="robots" content="noindex, nofollow" /> |
| 9 |
{% endblock %} |
| 10 |
|
| 11 |
{% block content %} |
| 12 |
<h1 class="brand-h1">Makenot<span class="dot">.</span>work</h1> |
| 13 |
<div class="login-container"> |
| 14 |
<div class="login-form"> |
| 15 |
<h2 class="subtitle-h2">{{ title }}</h2> |
| 16 |
|
| 17 |
{% for para in detail %} |
| 18 |
<p>{{ para }}</p> |
| 19 |
{% endfor %} |
| 20 |
|
| 21 |
{% if acknowledged %} |
| 22 |
<div class="hint mt-section"> |
| 23 |
<p>You have already confirmed this. Nothing further will be sent about it.</p> |
| 24 |
</div> |
| 25 |
{% else %} |
| 26 |
<form method="post" action="/acknowledge/{{ token }}"> |
| 27 |
<button type="submit" class="btn-primary"> |
| 28 |
I have read this |
| 29 |
</button> |
| 30 |
</form> |
| 31 |
<div class="hint mt-section"> |
| 32 |
<p> |
| 33 |
Confirming stops the reminders. It does not change anything about your |
| 34 |
account. |
| 35 |
</p> |
| 36 |
</div> |
| 37 |
{% endif %} |
| 38 |
|
| 39 |
<div class="foot-link mt-section"> |
| 40 |
<a href="/dashboard">Go to your dashboard<span class="dot">.</span></a> |
| 41 |
</div> |
| 42 |
</div> |
| 43 |
</div> |
| 44 |
{% endblock %} |
| 45 |
|