From 64ce3b358ffed2eb34d6836b57dd7849ce856a09 Mon Sep 17 00:00:00 2001 From: Aldo Cortesi Date: Tue, 23 Jul 2013 10:28:35 +1200 Subject: Make a start on mitmproxy web app. --- libmproxy/templates/certs.html | 14 +++++++++ libmproxy/templates/frame.html | 9 ++++++ libmproxy/templates/index.html | 14 +++++++++ libmproxy/templates/layout.html | 68 +++++++++++++++++++++++++++++++++++++++++ 4 files changed, 105 insertions(+) create mode 100644 libmproxy/templates/certs.html create mode 100644 libmproxy/templates/frame.html create mode 100644 libmproxy/templates/index.html create mode 100644 libmproxy/templates/layout.html (limited to 'libmproxy/templates') diff --git a/libmproxy/templates/certs.html b/libmproxy/templates/certs.html new file mode 100644 index 00000000..d30f23a3 --- /dev/null +++ b/libmproxy/templates/certs.html @@ -0,0 +1,14 @@ +{% extends "frame.html" %} +{% block body %} + + +
+
+

mitmproxy: pathological HTTP

+ +

Here are some certs.

+
+
+ + +{% endblock %} diff --git a/libmproxy/templates/frame.html b/libmproxy/templates/frame.html new file mode 100644 index 00000000..b5c5c67c --- /dev/null +++ b/libmproxy/templates/frame.html @@ -0,0 +1,9 @@ +{% extends "layout.html" %} +{% block content %} +
+
+ {% block body %} + {% endblock %} +
+
+{% endblock %} diff --git a/libmproxy/templates/index.html b/libmproxy/templates/index.html new file mode 100644 index 00000000..4e5c885b --- /dev/null +++ b/libmproxy/templates/index.html @@ -0,0 +1,14 @@ +{% extends "frame.html" %} +{% block body %} + + +
+
+

mitmproxy: pathological HTTP

+ +

This is an index page.

+
+
+ + +{% endblock %} diff --git a/libmproxy/templates/layout.html b/libmproxy/templates/layout.html new file mode 100644 index 00000000..9eec2aee --- /dev/null +++ b/libmproxy/templates/layout.html @@ -0,0 +1,68 @@ + + + + + mitmproxy + + + + + + + + + + + + + + + + + + + +
+ {% block content %} + {% endblock %} +
+ +
+ + + -- cgit v1.2.3