13 lines
766 B
HTML
13 lines
766 B
HTML
{% extends "base.html" %}
|
|
{% block content %}
|
|
<div class="row">
|
|
<div class="span12">
|
|
<p>Use this form to analyze a e-mail header. 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 o analyze e-mail problems or to see which servers, locations and companies the e-mail passed.</p>
|
|
<form action="/analyze" method="post">
|
|
{% csrf-field %}
|
|
<textarea class="form-control" name="mailheader" placeholder="Paste here your email in source format (with headers)"></textarea><br>
|
|
<input class="btn btn-success form-control" type="submit" name="send" value="Analyze the header">
|
|
</form>
|
|
</div>
|
|
</div>
|
|
{% endblock %}
|