-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
25 lines (25 loc) · 1.07 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
<!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">
<link href="https://cdn.jsdelivr.net/npm/[email protected]/dist/css/bootstrap.min.css" rel="stylesheet" integrity="sha384-0evHe/X+R7YkIZDRvuzKMRqM+OrBnVFBL6DOitfPri4tjfHxaWutUpFmBp4vmVor" crossorigin="anonymous">
<title>Interfell Challenge</title>
</head>
<body>
<div class = "container">
<h3 id ="conversion" style="color:rgb(0, 0, 0);"></h3>
<button id="connectMetamask">Connect Wallet</button>
<form id="convertDenom">
<input id="amount" placeholder="Insert value" type="number">
<input type="submit" value="Convert">
</form>
<form id="changeStock">
<input style="width:15rem;" id="updates" placeholder="5 uints separated by coma" type="text">
<input type="submit" value="Change Stock">
</form>
</div>
<script type="module" src="./dist/bundle.js"></script>
</body>
</html>