diff options
Diffstat (limited to 'web/src/index.html')
-rw-r--r-- | web/src/index.html | 21 |
1 files changed, 21 insertions, 0 deletions
diff --git a/web/src/index.html b/web/src/index.html new file mode 100644 index 00000000..cf8cb85f --- /dev/null +++ b/web/src/index.html @@ -0,0 +1,21 @@ +<!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="css/vendor.css"/> + <link rel="stylesheet" href="css/app.css"/> + <script src="js/vendor.js"></script> + <script src="js/app.js"></script> + <script> + $(function () { + mitmproxy.init(); + }); + </script> + +</head> +<body> +<div id="mitmproxy"></div> +</body> +</html>
\ No newline at end of file |