* ci: Also check generated HTML with the "vnu" validator Because HTML Tidy apparently misses a bunch of errors. * thead -> tbody * More fixes * More fixes * Start checker in test runner
26 lines
945 B
HTML
26 lines
945 B
HTML
{% extends "base.html" %}
|
|
{# Copyright The IETF Trust 2015, All Rights Reserved #}
|
|
{% load origin %}
|
|
{% load django_bootstrap5 %}
|
|
{% block title %}Set up test email address{% endblock %}
|
|
{% block content %}
|
|
{% origin %}
|
|
<h1>Set up test email address</h1>
|
|
<p>
|
|
Since this server is running in test mode, all email to be sent out
|
|
is intercepted and thrown away.
|
|
</p>
|
|
<p>
|
|
To receive a copy of each message before it's thrown away, you can
|
|
set an email address below. The address is stored in the <code>testmailcc</code>
|
|
cookie in your browser. So make sure cookies are enabled.
|
|
</p>
|
|
<p>
|
|
Current value of <code>testmailcc</code> cookie: <code>{{ cookie|default:"(Unset)" }}</code>
|
|
</p>
|
|
<form method="post">
|
|
{% csrf_token %}
|
|
{% bootstrap_form form %}
|
|
<button class="btn btn-primary" type="submit">Set cookie</button>
|
|
</form>
|
|
{% endblock %} |