2016-08-17 00:39:40 +02:00
|
|
|
<!doctype html>
|
2020-05-04 17:04:41 +02:00
|
|
|
<html>
|
2016-08-17 00:39:40 +02:00
|
|
|
<head>
|
2019-06-19 23:22:02 +02:00
|
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
2016-08-17 00:39:40 +02:00
|
|
|
<meta charset="utf-8">
|
|
|
|
<title>MetaMask Notification</title>
|
2016-08-17 01:46:44 +02:00
|
|
|
<style>
|
2019-06-19 23:22:02 +02:00
|
|
|
#app-content {
|
|
|
|
display: flex;
|
|
|
|
flex-flow: column;
|
|
|
|
}
|
|
|
|
|
|
|
|
#loading__logo {
|
|
|
|
width: 10rem;
|
|
|
|
height: 10rem;
|
|
|
|
align-self: center;
|
|
|
|
margin: 10rem 0 0 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
#loading__spinner {
|
|
|
|
width: 2rem;
|
|
|
|
height: 2rem;
|
|
|
|
align-self: center;
|
|
|
|
margin-top: 1rem;
|
|
|
|
}
|
2016-08-17 01:46:44 +02:00
|
|
|
</style>
|
2019-09-03 19:47:54 +02:00
|
|
|
<link rel="stylesheet" type="text/css" href="./index.css" title="ltr">
|
|
|
|
<link rel="stylesheet" type="text/css" href="./index-rtl.css" title="rtl" disabled>
|
2016-08-17 00:39:40 +02:00
|
|
|
</head>
|
2020-05-04 17:04:41 +02:00
|
|
|
<body class="notification">
|
2019-06-19 23:22:02 +02:00
|
|
|
<div id="app-content">
|
|
|
|
<img id="loading__logo" src="./images/logo/metamask-fox.svg" />
|
|
|
|
<img id="loading__spinner" src="./images/spinner.gif" />
|
|
|
|
</div>
|
2020-03-30 22:55:17 +02:00
|
|
|
<div id="popover-content"></div>
|
2019-09-16 19:11:01 +02:00
|
|
|
<script src="./ui-libs.js" type="text/javascript" charset="utf-8"></script>
|
2018-03-29 06:29:57 +02:00
|
|
|
<script src="./ui.js" type="text/javascript" charset="utf-8"></script>
|
2016-08-17 00:39:40 +02:00
|
|
|
</body>
|
|
|
|
</html>
|