aboutsummaryrefslogtreecommitdiffstats
path: root/libmproxy/web/templates/index.html
diff options
context:
space:
mode:
authorAldo Cortesi <aldo@nullcube.com>2014-09-14 12:33:07 +1200
committerAldo Cortesi <aldo@nullcube.com>2014-09-14 12:33:07 +1200
commitff09529ba3a5ec6d8df38a354ca61a6a4d33d3a1 (patch)
tree81bddd901bf668749ad4d56e177abe9448c86aaf /libmproxy/web/templates/index.html
parent6812d304a1a1893480360d5439fa09445ad55a2c (diff)
downloadmitmproxy-ff09529ba3a5ec6d8df38a354ca61a6a4d33d3a1.tar.gz
mitmproxy-ff09529ba3a5ec6d8df38a354ca61a6a4d33d3a1.tar.bz2
mitmproxy-ff09529ba3a5ec6d8df38a354ca61a6a4d33d3a1.zip
Add tornado dependency, serve index file
Diffstat (limited to 'libmproxy/web/templates/index.html')
-rw-r--r--libmproxy/web/templates/index.html16
1 files changed, 16 insertions, 0 deletions
diff --git a/libmproxy/web/templates/index.html b/libmproxy/web/templates/index.html
new file mode 100644
index 00000000..434f15f9
--- /dev/null
+++ b/libmproxy/web/templates/index.html
@@ -0,0 +1,16 @@
+<!DOCTYPE html>
+<html>
+<head lang="en">
+ <meta charset="UTF-8">
+ <title>mitmproxy</title>
+ <meta name="viewport" content="width=device-width, initial-scale=1">
+ <link rel="stylesheet" href="static/mitmproxy.css"/>
+ <script src="static/mitmproxy.js"></script>
+</head>
+<body>
+<div id="mitmproxy"></div>
+</body>
+<script>
+ app = React.renderComponent(routes, document.body);
+</script>
+</html> \ No newline at end of file