clojurecup2015-mailhead/resources/templates/home.html

25 lines
1 KiB
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 e-mail headers. 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. The e-mail will not be stored on the server,
but please don't paste sensible information here, just leave out the body
of the e-mail.</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 e-mail now!">
</form>
</div>
</div>
{% endblock %}