2016-11-30 23:43:18 +01:00
|
|
|
<!doctype html>
|
|
|
|
<html>
|
|
|
|
<head>
|
|
|
|
<meta charset="utf-8">
|
|
|
|
<title>MetaMask</title>
|
|
|
|
|
|
|
|
<script>
|
|
|
|
window.METAMASK_DEBUG = true
|
|
|
|
window.TEST_MODE = true
|
|
|
|
</script>
|
|
|
|
</head>
|
|
|
|
<body>
|
|
|
|
|
|
|
|
<!-- app content -->
|
|
|
|
<div id="app-content" style="height: 100%"></div>
|
|
|
|
<script src="./bundle.js" type="text/javascript" charset="utf-8"></script>
|
|
|
|
|
|
|
|
</body>
|
|
|
|
|
|
|
|
<style>
|
2017-09-14 05:25:27 +02:00
|
|
|
html, body, #test-container, .super-dev-container {
|
2016-11-30 23:43:18 +01:00
|
|
|
height: 100%;
|
|
|
|
width: 100%;
|
|
|
|
position: relative;
|
|
|
|
background: white;
|
|
|
|
}
|
2017-09-14 05:25:27 +02:00
|
|
|
|
|
|
|
#app-content {
|
2016-11-30 23:43:18 +01:00
|
|
|
background: #F7F7F7;
|
|
|
|
}
|
|
|
|
</style>
|
|
|
|
</html>
|