clojurecup2015-mailhead/resources/templates/home.html

14 lines
766 B
HTML
Raw Normal View History

2015-12-05 01:03:29 +01:00
{% extends "base.html" %}
{% block content %}
2015-12-05 01:18:39 +01:00
<div class="row">
<div class="span12">
2015-12-05 11:31:48 +01:00
<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 %}
2015-12-06 11:13:00 +01:00
<textarea class="form-control" name="mailheader" placeholder="Paste here your email in source format (with headers)"></textarea><br>
2015-12-05 11:31:48 +01:00
<input class="btn btn-success form-control" type="submit" name="send" value="Analyze the header">
</form>
2015-12-05 01:03:29 +01:00
</div>
2015-12-05 01:18:39 +01:00
</div>
2015-12-05 01:03:29 +01:00
{% endblock %}