-
Notifications
You must be signed in to change notification settings - Fork 702
Expand file tree
/
Copy pathindex.html
More file actions
82 lines (82 loc) · 2.12 KB
/
index.html
File metadata and controls
82 lines (82 loc) · 2.12 KB
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
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
<!DOCTYPE html>
<html>
<head>
<title>Github: 0xmarf</title>
<style>
body {
background-color: #008080;
}
.window {
position: absolute;
top: 50%;
left: 50%;
transform: translate(-50%, -50%);
width: 400px;
height: 400px;
background-color: #c0c0c0;
border: 2px solid black;
overflow: hidden;
}
.window-header {
width: 100%;
height: 20px;
background-color: #000080;
color: white;
text-align: center;
font-family: Arial, sans-serif;
font-size: 12px;
line-height: 20px;
user-select: none;
-webkit-user-select: none;
cursor: move;
}
.window-content {
padding: 10px;
font-family: Arial, sans-serif;
font-size: 12px;
color: black;
}
.window-content input {
width: 100%;
margin-bottom: 10px;
padding: 2px;
}
.button {
display: inline-block;
padding: 5px 10px;
background-color: #000080;
color: white;
text-align: center;
font-family: Arial, sans-serif;
font-size: 12px;
cursor: pointer;
}
.button:hover {
background-color: #0000ff;
}
</style>
</head>
<body>
<div class="window">
<div class="window-header">Github: 0xmarf</div>
<div class="window-content">
<div>Your Wallet</div>
<div>Wallet Address</div>
<input type="text" placeholder="Type an address, for example: 0x1">
<div>Balance:</div>
<div>0</div>
<div>Send Transaction</div>
<div>Private Key</div>
<input type="password" placeholder="Enter your private key">
<div>Send Amount</div>
<input type="text" placeholder="1, 2, 3...">
<div>Recipient</div>
<input type="text" placeholder="Type an address, for example: 0x2">
<div>
<input type="submit" class="button" value="Transfer">
<input type="button" class="button" value="Cancel">
</div>
</div>
</div>
</body>
</html>