datatracker/ietf/templates/ietfauth/testemail.html
Lars Eggert bbf088e18b Hopefully the final check-ins.
- Legacy-Id: 19909
2022-02-08 17:29:15 +00:00

26 lines
957 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 role="form" method="post">
{% csrf_token %}
{% bootstrap_form form %}
<button class="btn btn-primary" type="submit">Set cookie</button>
</form>
{% endblock %}