diff options
Diffstat (limited to 'templates/override.html')
| -rw-r--r-- | templates/override.html | 33 |
1 files changed, 33 insertions, 0 deletions
diff --git a/templates/override.html b/templates/override.html new file mode 100644 index 0000000..02b6a3c --- /dev/null +++ b/templates/override.html @@ -0,0 +1,33 @@ +{% extends "base.html" %} + +{% block title %} — Override Recovery{% endblock %} + +{% block content %} +<section class="override-page"> + <h2>OVERRIDE RECOVERY GATE</h2> + + <div class="warning-block"> + <p class="warning-text">{{ warning }}</p> + </div> + + <div class="override-info"> + <p>Days remaining in prescribed recovery: <strong>{{ days_remaining }}</strong></p> + <p>Recommended next session: <strong>{{ next_date }}</strong></p> + </div> + + <form method="post" action="/override/confirm"> + <div class="override-actions"> + <button type="submit" class="btn-danger">I UNDERSTAND. PROCEED.</button> + <a href="/" class="btn-secondary">RETURN TO DASHBOARD</a> + </div> + </form> +</section> +{% endblock %} + +{% block quote %} +<blockquote> + “To act against one’s own rational judgment is to act against + one’s own interests.” + <cite>— Mike Mentzer</cite> +</blockquote> +{% endblock %} |