clojurecup2015-mailhead/resources/templates/home.html

16 lines
760 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">
Paste here your E-Mail 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 %}