-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
95 lines (76 loc) · 4.96 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
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Home</title>
<link rel="icon"
type="image/x-icon"
href="/favicon.png">
<link rel="stylesheet" href="css/bootstrap.css">
<script src="https://code.jquery.com/jquery-3.2.1.min.js" integrity="sha384-xBuQ/xzmlsLoJpyjoggmTEz8OWUFM0/RC5BsqQBDX2v5cMvDHcMakNTNrHIW2I5f" crossorigin="anonymous"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/popper.js/1.12.9/umd/popper.min.js" integrity="sha384-ApNbgh9B+Y1QKtv3Rn7W3mgPxhU9K/ScQsAP7hUibX39j7fakFPskvXusvfa0b4Q" crossorigin="anonymous"></script>
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/3.4.1/js/bootstrap.min.js" integrity="sha384-aJ21OjlMXNL5UyIl/XNwTMqvzeRMZH2w8c5cRVpzpU8Y5bApTppSuUkhZXN0VxHd" crossorigin="anonymous"></script>
<script src="js/login.js"></script>
<script defer src="js/page.js"></script>
<link rel="stylesheet" href="css/site.css">
</head>
<body>
<nav class="navbar navbar-expand-lg navbar-dark bg-dark">
<div class="container-fluid" style="justify-content: left">
<img src="logo.png" width="32px" style="margin-right: 5px"/>
<a class="navbar-brand" href="#">GRLC Shop</a>
<ul class="nav navbar-nav" id="navbarColor02">
<li class="nav-item">
<a class="nav-link active" href="index.html">Home
<span class="visually-hidden">(current)</span>
</a>
</li>
<li class="nav-item">
<a class="nav-link" href="account.html">Account</a>
</li>
<li class="nav-item">
<a class="nav-link" href="contact.html">Contact Us</a>
</li>
</ul>
</div>
</div>
</nav>
<div class="mainDiv">
<div class="card border-primary mb-6 card-margin" style="min-width: 20rem">
<div class="card-header">Actions</div>
<div class="card-body">
<div>
<h4 class="card-title">Access Your Account</h4>
<button class="btn btn-success" type="button" onclick="window.location.href='signup.html'" id="signupButton" style="width: 100%;min-width: fit-content">Signup</button>
</br></br>
<button class="btn btn-primary" type="button" onclick="window.location.href='login.html'" id="loginButton" style="width: 100%;min-width: fit-content">Login</button>
</br></br>
<h4 class="card-title">Current Stats</h4>
<p class="card-text">Current Price: <span class="badge bg-primary"><u>$<a id="curPrice">0</a> / GRLC</u></span></p>
<p class="card-text">Available to Buy: <span class="badge bg-primary"><u><a id="sellableBalance">0</a> GRLC</u></span></p>
</div>
</div>
</div>
<div class="card border-info mb-6 card-margin">
<div class="card-header">You Should Know</div>
<div class="card-body">
<h4 class="card-title">Read Our Terms of Service & Privacy Policy</h4>
<p class="card-text">Please Read Our <a href="tos.html" target="_blank">Terms Of Service & Privacy Policy</a>. It contains important information that applies to all users of our site.</p>
<h4 class="card-title">Restricted Purchase Sizes</h4>
<p class="card-text">Due to our limited supply accounts may be limited in their maximum purchase sizes. Restrictions you face will depend on your purchase history. Therefore new accounts may face tight initial limits.</p>
<h4 class="card-title">Is My Balance Real?</h4>
<p class="card-text">Yes, all of the balance shown on your account is <strong>yours!</strong> Every coin you see is a coin that we have sitting in our master wallet. So you can withdraw from your account whatever happens.</p>
<h4 class="card-title">Balance Reservation</h4>
<p class="card-text">When you buy Crypto through us, we reserve the amount you attempt to purchase for 15 minutes. After this time we no longer guarantee instant receipt of your crypto. If we cant immediately provide you with the crypto, we will attempt to adjust your balance as soon as more balance is available. More details in our TOS.</p>
<h4 class="card-title">What Fee's Do I Get Charged?</h4>
<p class="card-text">
When Withdrawing from your account any <a href="https://atomicwallet.io/blog/academy/network-fees">Network Fee</a> will be <strong>deducted</strong> from your withdrawal.</br>
We also charge a flat fee of <strong>5%</strong> on all purchases.
</p>
<h4 class="card-title">Can I Use This As A GRLC Shop?</h4>
<p class="card-text">Yes, Deposit as much as you want, it will always be yours! However, if you plan to keep a long-term balance with us we <strong>STRONGLY</strong> recommend you register a <strong>Pay Out Address</strong> so that your balance may be returned if necessary.</p>
</div>
</div>
</div>
</body>
</html>