-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathadmin.html
More file actions
59 lines (55 loc) · 2.29 KB
/
Copy pathadmin.html
File metadata and controls
59 lines (55 loc) · 2.29 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
<!doctype html>
<html lang="en">
<head>
<!-- Required meta tags -->
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
<!-- Bootstrap CSS -->
<link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/bootstrap/4.1.3/css/bootstrap.min.css" integrity="sha384-MCw98/SFnGE8fJT3GXwEOngsV7Zt27NXFoaoApmYm81iuXoPkFOJwJ8ERdknLPMO" crossorigin="anonymous">
<title>Ether Patron - Admin</title>
</head>
<body>
<div class="d-flex justify-content-center">
<div class="grid">
<div class="row justify-content-center m-1 mt-3" >
<h3>
Ether Patron Admin
</h3>
</div>
<div class="row justify-content-center m-1">
<h3>
<small class="text-muted">Withdraw donations</small>
</h3>
</div>
<div class="row justify-content-center m-2">
<b>Current period:</b>
</div>
<div class="row justify-content-center m-1" id="currentDonations">
0 Ether
</div>
<div class="row justify-content-center m-1">
<button type="button" class="btn btn-primary" id="withdraw-current">Withdraw!</button>
</div>
<div class="row justify-content-center m-2 mt-4">
<b>Previous periods:</b>
</div>
<div class="row justify-content-center m-1" id="previousDonations">
0 Ether
</div>
<div class="row justify-content-center m-1">
<button type="button" class="btn btn-primary" id="withdraw-previous">Withdraw!</button>
</div>
<div class="row justify-content-center m-4 metaMaskError alert alert-danger d-none" role="alert" >
Requires MetaMask
</div>
</div>
</div>
<footer class="page-footer font-small blue fixed-bottom">
<div class="text-right py-3 bg-light pr-5">
<a href="/">EtherPatron.com</a> |
<a href="https://github.com/MartinKral/ether-patron" target="_blank">GitHub</a>
</div>
</footer>
<script src="admin.js"></script>
</body>
</html>