Pimp the HTML

This commit is contained in:
Aaron Fischer 2015-12-06 11:13:00 +01:00
parent 90891ab60d
commit 2286e75f0d
2 changed files with 9 additions and 5 deletions

View file

@ -5,9 +5,7 @@
<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>
<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>

View file

@ -1,3 +1,9 @@
This is the result ....
{% extends "base.html" %}
{{ mailheader }}
{% block content %}
<div class="row">
<div class="span12">
{{ mailheader }}
</div>
</div>
{% endblock %}