23 lines
950 B
HTML
23 lines
950 B
HTML
{% extends "base.html" %}
|
|
{% block content %}
|
|
<div class="row">
|
|
<div class="span3">
|
|
<img id="head" src="img/head.png">
|
|
</div>
|
|
<div class="span9">
|
|
<p class="col-md-9">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 class="col-md-9" 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 %}
|