aboutsummaryrefslogtreecommitdiffstats
path: root/libmproxy/templates
diff options
context:
space:
mode:
authorAldo Cortesi <aldo@nullcube.com>2014-01-28 09:44:33 +1300
committerAldo Cortesi <aldo@nullcube.com>2014-01-28 09:44:33 +1300
commitae87affcbe9f2753d68e4e9826eedec102d633d2 (patch)
tree3bcf9f532382271b1a8282b4a4f712651e099775 /libmproxy/templates
parent784f411273c4b09797529822e336ce34fa8d1f23 (diff)
downloadmitmproxy-ae87affcbe9f2753d68e4e9826eedec102d633d2.tar.gz
mitmproxy-ae87affcbe9f2753d68e4e9826eedec102d633d2.tar.bz2
mitmproxy-ae87affcbe9f2753d68e4e9826eedec102d633d2.zip
Nicer layout for cert install options.
Diffstat (limited to 'libmproxy/templates')
-rw-r--r--libmproxy/templates/index.html31
1 files changed, 19 insertions, 12 deletions
diff --git a/libmproxy/templates/index.html b/libmproxy/templates/index.html
index d46d9854..50cfd5db 100644
--- a/libmproxy/templates/index.html
+++ b/libmproxy/templates/index.html
@@ -1,19 +1,26 @@
{% extends "frame.html" %}
{% block body %}
-<div class="masthead">
- <div class="container">
-
- <p>
- <a href="/cert/pem"><i class="fa fa-apple fa-5x"></i></a>
- </p>
-
- <p><a href="/cert/p12"><i class="fa fa-windows fa-5x"></i></a></p>
-
- <p><a href="/cert/pem"><i class="fa fa-android fa-5x"></i></a></p>
-
+<center>
+<h2> Click to install the mitmproxy certificate: </h2>
+</center>
+<div id="certbank" class="row">
+ <div class="col-md-3">
+ <a href="/cert/pem"><i class="fa fa-apple fa-5x"></i></a>
+ <p>Apple</p>
+ </div>
+ <div class="col-md-3">
+ <a href="/cert/p12"><i class="fa fa-windows fa-5x"></i></a>
+ <p>Windows</p>
+ </div>
+ <div class="col-md-3">
+ <a href="/cert/pem"><i class="fa fa-android fa-5x"></i></a>
+ <p>Android</p>
+ </div>
+ <div class="col-md-3">
+ <a href="/cert/pem"><i class="fa fa-asterisk fa-5x"></i></a>
+ <p>Other</p>
</div>
</div>
-
{% endblock %}