20 lines
847 B
HTML
20 lines
847 B
HTML
{% extends "base.html" %}
|
|
{% block content %}
|
|
<div class="row">
|
|
<div class="span12">
|
|
<p>Use this form to analyze a e-mail. Just paste the whole e-mail
|
|
in <strong>raw mode</strong> here and hit the analyze button. The e-mail
|
|
will be analyzed and an visual representation will be generated. Use this
|
|
tool to find e-mail problems or to see which servers, locations and
|
|
companies the e-mail passed. This tool is intended for debugging e-mail
|
|
communication.</p>
|
|
|
|
<form action="/analyze" method="post">
|
|
{% csrf-field %}
|
|
<textarea class="form-control" name="mailheader" placeholder="Paste your e-mail in source format (with headers) here."></textarea><br>
|
|
<input class="btn btn-success form-control" type="submit" name="send"
|
|
value="Analyze the mail now!">
|
|
</form>
|
|
</div>
|
|
</div>
|
|
{% endblock %}
|