forked from nitinmittal23/smart-bots
-
Notifications
You must be signed in to change notification settings - Fork 1
/
index.html
95 lines (80 loc) · 4.17 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">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.5.1/jquery.min.js"></script>
<script src="https://cdn.jsdelivr.net/npm/dsa-sdk@v1.3.20/build/dsa.min.js"></script>
<script src="https://cdn.jsdelivr.net/gh/ethereum/web3.js@1.0.0-beta.36/dist/web3.min.js"></script>
<link href="css/bootstrap.min.css" rel="stylesheet">
<script type="text/javascript" src="./js/app.js"></script>
<script type="text/javascript" src="./js/mexa.js"></script>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.12.4/jquery.min.js"></script>
<script src="js/bootstrap.min.js"></script>
<title>smartbots</title>
</head>
<body>
<div class = "container">
<div class="row">
<div class="col-xs-12 col-sm-8 col-sm-push-2">
<h1 class="text-center">SavInfinity</h1>
<hr/>
<br/>
</div>
</div>
<div class="col-sm-6 col-sm-push-2 col-md-2 col-md-push-0">
<div class="panel panel-default">
<div class="panel-heading">
<h3 class="panel-title"></h3>
</div>
<div class="panel-body">
<button class = "center btn btn-primary" id="dashboard" type = "button">DashBoard</button><br><br>
<button class = "center btn btn-primary" id="premium" type = "button">Premium A/c</button><br><br>
<button class = "center btn btn-primary" id="faq" type = "button">FAQ</button><br><br>
<button class = "center btn btn-primary" id="contact" type = "button">Contact Us</button><br><br>
</div>
</div>
</div>
<div class="col-sm-6 col-sm-push-3 col-md-7 col-md-push-0">
<div class="panel panel-default">
<div class="panel-heading">
<h3 class="panel-title text-center" >My Account</h3>
</div>
<div class="panel-body text-center">
<strong>Account Address: </strong> <span id="accountValue">No Account Created</span><br/>
<strong>Principal Amount: </strong> <span id="PAmount"></span><br/>
<strong>Interest Earned: </strong> <span id="intEarned"></span><br/>
<strong>Avg. Interest Rate: </strong> <span id="AvgRate"></span><br/>
</div>
</div>
</div>
<div class="col-sm-6 col-sm-push-3 col-md-3 col-md-push-0">
<div class="panel panel-default">
<div class="panel-heading">
<h3 class="panel-title">My Account</h3>
</div>
<div class="panel-body">
<div class="panel-body text-center">
<button class = "btn btn-primary" id="build" type = "button">Create Account</button><br><br>
<button class="btn btn-primary" id="userAllowance" type="button">UserAllowance</button><br><br>
<button class="btn btn-primary" id="Authority" type="button">Authority</button><br><br>
</div>
<input type="number" class="form-control" id="amount" placeholder="Amount to transfer" />
<select name="tokens" id="tokenType">
<option value="dai">DAI</option>
<option value="ether">Eth</option>
<option value="matic">Matic</option>
<option value="usdcoin">USDC</option>
</select>
</div>
<div class="panel-body text-center">
<button class="btn btn-primary" id="deposit" type="button">Deposit</button>
<button class="btn btn-primary" id="withdraw" type="button">Withdraw</button><br><br>
<button class="btn btn-primary" id="trade" type="button">Trade</button><br><br>
</div>
</div>
</div>
</div>
</body>
</html>