blob: f38c3683844aea69272c91c4b0452342bf249b84 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
|
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>mitmproxy</title>
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" href="css/mitmproxy.css" type="text/css" />
<script src="js/mitmproxy.js"></script>
</head>
<body>
<div id="mitmproxy"></div>
</body>
<script>
$(function(){
mitmproxy.init();
});
</script>
</html>
|