diff options
author | Aldo Cortesi <aldo@nullcube.com> | 2014-09-10 11:34:58 +1200 |
---|---|---|
committer | Aldo Cortesi <aldo@nullcube.com> | 2014-09-10 11:34:58 +1200 |
commit | 76982937a68a2adaf96ec2d258e369d7c871a609 (patch) | |
tree | 46453bc432035ea5f4405351563529de65ea0ba3 /libmproxy/web/templates/index.html | |
parent | e5412e9dd91c37a3f43f68441985b857d29cbbb4 (diff) | |
download | mitmproxy-76982937a68a2adaf96ec2d258e369d7c871a609.tar.gz mitmproxy-76982937a68a2adaf96ec2d258e369d7c871a609.tar.bz2 mitmproxy-76982937a68a2adaf96ec2d258e369d7c871a609.zip |
Reorg to put web app in its own directory
Diffstat (limited to 'libmproxy/web/templates/index.html')
-rw-r--r-- | libmproxy/web/templates/index.html | 26 |
1 files changed, 26 insertions, 0 deletions
diff --git a/libmproxy/web/templates/index.html b/libmproxy/web/templates/index.html new file mode 100644 index 00000000..50cfd5db --- /dev/null +++ b/libmproxy/web/templates/index.html @@ -0,0 +1,26 @@ +{% extends "frame.html" %} +{% block body %} + +<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 %} |