-
Notifications
You must be signed in to change notification settings - Fork 5
/
index.html
37 lines (33 loc) · 1.72 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
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title>GEN <-> xGEN Token Bridge</title> <!-- TODO: Replace GEN with your token -->
<link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/bootstrap/4.3.1/css/bootstrap.min.css" integrity="sha384-ggOyR0iXCbMQv3Xipma34MD+dH/1fQ784/j6cY/iJTQUOhcWr7x9JvoRxT2MZw1T" crossorigin="anonymous">
<script src="https://code.jquery.com/jquery-3.2.1.min.js" integrity="sha256-hwg4gsxgFZhOsEEamdOYGBf13FyQuiTwlAQgxVSNgt4=" crossorigin="anonymous"></script>
<script src='https://www.google.com/recaptcha/api.js'></script>
<link rel="stylesheet" type="text/css" href="css/main.css">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/toastr.js/latest/toastr.min.css">
<script src='https://cdnjs.cloudflare.com/ajax/libs/toastr.js/latest/toastr.min.js'></script>
<link rel="shortcut icon" type="image/png" href="public/gen.png"/> <!-- TODO: Replace gen with your token -->
</head>
<body>
<script src="https://cdn.jsdelivr.net/gh/ethereum/web3.js@1.2.6/dist/web3.min.js"></script>
<div class="ribbon">
<div class="container">
<h2 class="title" id="pageTitle">GEN <-> xGEN Token Bridge</h2>
<h5 id="description"></h5>
<h4 id="balance"></h4>
<form class="form-register" id="form">
<h5 id="direction"></h5>
<label for="amount">Tokens to move:</label>
<input type="number" id="amount" name="amount" min="0" step="any">
<button type="submit" class="btn btn-secondary" id="requestBtn">Move tokens</button>
</form>
<a id="blockscouts" target="_blank">See xDai account on Blockscouts</a><br>
<a id="etherscan" target="_blank">See mainnet account on Etherscan</a>
</div>
</div>
<script type="text/javascript" src="bundle.js"></script>
</body>
</html>