-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpopup.html
41 lines (39 loc) · 945 Bytes
/
popup.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
<html style="background-color: #0f1a4a;">
<head>
<style>
#verify-button:hover{
cursor:pointer;
}
.hidden{
display:none;
}
#verify-button{
background-color:#1290FF;
padding:5px 10px;
color:white;
font-size: 14px;
border-radius:5px
display:none;
}
#state{
padding-top: 10px;
text-align: center;
}
button:focus {
outline:0;
}
</style>
</head>
<body style="margin:0;padding:0;background-color: #0f1a4a;">
<div style="width: 200px; padding:20px; font-size: 20px; border-radius: 5px; color:#44B9E2; background-color: #0f1a4a; font-family:Courier New">
<div style="text-align: center">
<img src="adtoken.png" height="40" />
</div>
<div id="state"></div>
<br/><br/>
<!-- <div style="text-align: center;">
<input id="verify-button" type="button" value="verify" id='verify' />
</div> -->
<script src="verify.js"></script>
</body>
</html>