-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmodifiedindex.html
61 lines (58 loc) · 1.84 KB
/
modifiedindex.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title style="font-family:Verdana, Geneva, Tahoma, sans-serif;">Algo Smart Token</title>
<link href="./app.css" rel="stylesheet" />
<style>
button {
position: relative;
top: 50%;
}
</style>
</head>
<body class="gradient-bg-body">
<header class="w-4/5 flex justify-between items-center py-4 mx-auto">
<div style="text-align: center;">
<br>
<br>
<div
class="md:flex-[0.5] flex-initial justify-center items-center text-white font-bold text-2xl"
>
Algo Smart
</div>
<button
id="connect"
class="shadow-xl shadow-black text-white bg-green-400 hover:bg-green-600 md:text-xs p-2 rounded-full"
>
Connect Wallet
</button>
</header>
<main class="flex justify-center">
<div
class="bg-[#151c25] py-4 flex flex-col justify-center items-center shadow-md shadow-green-500 rounded-xl w-[400px] h-auto mt-28"
>
<button
class="w-full max-w-[300px] my-2 text-white bg-green-400 hover:bg-green-600 p-2 py-3 rounded-full"
>
Get Token From Faucet
</button>
<small class="text-gray-400 mb-2">
You only get 20 AST tokens in 24 hours</small
>
<button
class="w-full max-w-[300px] my-2 text-white bg-green-400 hover:bg-green-600 p-2 py-3 rounded-full"
>
Optin Asset
</button>
<button
class="w-full max-w-[300px] my-2 text-white bg-green-400 hover:bg-green-600 p-2 py-3 rounded-full"
>
Optin to token
</button>
</div>
</main>
</body>
</html>