-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpopup.html
127 lines (122 loc) · 2.86 KB
/
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
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
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
<!doctype html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<title>Whitelist Collector</title>
<style>
html, body {
font-family: 'Open Sans', sans-serif;
font-size: 14px;
margin: 0;
min-height: 180px;
padding: 0;
width: 384px auto;
}
h1 {
font-family: 'Menlo', monospace;
font-size: 22px;
font-weight: 400;
margin: 0;
color: #F4e21B;
}
img {
width: 30px;
}
.modal-header {
align-items: center;
border-bottom: 0.5px solid #dadada;
}
.logo {
padding: 16px;
}
.logo-icon {
vertical-align: text-bottom;
margin-right: 12px;
}
.version {
color: #444;
font-size: 12px;
}
.modal-content {
padding: 0 22px;
}
body {
font-family: "Roboto", sans-serif;
}
h1 {
text-align: center;
}
table,
form {
width: 200px;
margin: 10px auto;
}
table {
border-collapse: collapse;
}
table td,
table th {
border: solid 1px black;
}
label,
input {
display: block;
margin: 10px 0;
font-size: 16px;
}
button {
display: block;
}
</style>
</head>
<body>
<div class="modal-header">
<h1 class="logo">
<img src="/images/48.png" alt="" class="logo-icon">Whitelist Collector <span class="version">(1.0)</span>
</h1>
</div>
<div class="modal-content">
<p>By community to community</p>
</div>
<form>
<div class="input-row">
<label for="name">Project name</label>
<input type="text" name="name" id="name" />
</div>
<div class="input-row">
<label for="wl">Whitelisted?</label>
<input type="text" name="wl" id="wl" />
</div>
<div class="input-row">
<label for="price">Mint price</label>
<input type="text" name="price" id="price" />
</div>
<div class="input-row">
<label for="date">Mint date</label>
<input type="text" name="date" id="date" />
</div>
<div class="input-row">
<label for="link">Link to Twitter</label>
<input type="url" name="link" id="link" />
</div>
<button>Submit</button>
</form>
<table>
<thead>
<tr>
<th>Project Name</th>
<th>Whitelisted?</th>
<th>Mint Price</th>
<th>Mint Date</th>
<th>Link to twitter</th>
<th></th>
</tr>
</thead>
<tbody></tbody>
</table>
<script src="popup.js"></script>
By RCC community member 0Schneider#1587
</body>
</html>