-
Notifications
You must be signed in to change notification settings - Fork 3
/
index.html
77 lines (73 loc) · 3.89 KB
/
index.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
<!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>Go fund Geo</title>
<!-- Google Font -->
<link
href="https://fonts.googleapis.com/css?family=Poppins:100,200,300,400,500,600,700,800,900"
rel="stylesheet">
<!-- Bootstrap 4.2.1 -->
<link rel="stylesheet" href="css/plugins/bootstrap.min.css">
<!-- Magnific Popup -->
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/magnific-popup.js/1.1.0/magnific-popup.min.css">
<!-- Font Awesome -->
<link
href="https://stackpath.bootstrapcdn.com/font-awesome/4.7.0/css/font-awesome.min.css"
rel="stylesheet">
<!-- Main CSS -->
<link rel="stylesheet" href="css/main.css">
</head>
<body>
<!-- Page Loading -->
<div class="se-pre-con"></div>
<!-- ========== Start Navbar ========== -->
<nav class="navbar navbar-expand-lg navbar-dark fixed-top">
<div class="container">
<a class="navbar-brand" href="https://cheapethereum.org/"><img id="svg-navbar" src="img/white_cth.svg" alt=""></a>
</div>
</nav>
<!-- ========== End Navbar ========== -->
<!-- ========== Start Main ========== -->
<section class="slider d-flex align-items-center" id="slider">
<div id="particles-js"></div>
<div class="container text-center">
<div class="row d-flex align-items-center mt-60">
<div class="col-lg-12">
<div class="text">
<h1 class="h1-w mb-20">Donate to George Hotz</h1>
<p class="p-w mb-30">Do you wanna help us to raise funds to contract George Hotz (geohot) to implement
checkpointing for cheapETH?</p>
<h2 class="h2-w mb-20"><span id="gfg-fund-balance">...</span> cTH already collected!</h2>
<h2 class="h2-w mb-20" id="gfg-donor-balance"> </h2>
</div>
<div class="input-group">
<input id="donation-input" type="text" class="form-control new-border text-center" placeholder="Enter your donation amount in cTH" aria-label="Enter your donation amount in cheap ethereum" aria-describedby="basic-addon2">
</div>
<a href="#" class="btn-white d-inline-block space-right" onclick="connectMetaMask()">Connect MetaMask</a>
<a href="#" class="btn-white d-inline-block space-right" onclick="donate()">Donate</a>
<a href="#" class="btn-white d-inline-block" onclick="unDonate()" id="undonateButton">Get my ... back!</a>
</div>
</div>
</div>
</section>
<!-- ========== End Main ========== -->
<!-- ========== JS ========== -->
<script src="js/plugins/jquery-3.5.1.min.js"></script>
<script src="js/plugins/popper.min.js"></script>
<script src="js/plugins/bootstrap.min.js"></script>
<!-- Particels JS -->
<script src="js/plugins/particles.min.js"></script>
<script src="js/plugins/app.js"></script>
<!-- Smooth Scrolling -->
<script src="js/plugins/jquery.smoothscroll.min.js"></script>
<!-- Magnific Popup -->
<script src="https://cdnjs.cloudflare.com/ajax/libs/magnific-popup.js/1.1.0/jquery.magnific-popup.min.js"></script>
<script src="js/main.js"></script>
<!-- Chain Related -->
<script src="https://cdn.ethers.io/lib/ethers-5.2.umd.min.js" type="application/javascript"></script>
<script src="js/cheap.js"></script>
</body>
</html>