Pimp the HTML
This commit is contained in:
parent
90891ab60d
commit
2286e75f0d
2 changed files with 9 additions and 5 deletions
|
@ -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>
|
<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">
|
<form action="/analyze" method="post">
|
||||||
{% csrf-field %}
|
{% csrf-field %}
|
||||||
<textarea class="form-control" name="mailheader">
|
<textarea class="form-control" name="mailheader" placeholder="Paste here your email in source format (with headers)"></textarea><br>
|
||||||
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">
|
<input class="btn btn-success form-control" type="submit" name="send" value="Analyze the header">
|
||||||
</form>
|
</form>
|
||||||
</div>
|
</div>
|
||||||
|
|
|
@ -1,3 +1,9 @@
|
||||||
This is the result ....
|
{% extends "base.html" %}
|
||||||
|
|
||||||
{{ mailheader }}
|
{% block content %}
|
||||||
|
<div class="row">
|
||||||
|
<div class="span12">
|
||||||
|
{{ mailheader }}
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
{% endblock %}
|
||||||
|
|
Loading…
Reference in a new issue