-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
43 lines (35 loc) · 1.44 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
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title>Rika's Betting Salon</title>
<link rel="stylesheet"href="https://stackpath.bootstrapcdn.com/bootstrap/4.1.3/css/bootstrap.min.css" integrity="sha384-MCw98/SFnGE8fJT3GXwEOngsV7Zt27NXFoaoApmYm81iuXoPkFOJwJ8ERdknLPMO" crossorigin="anonymous">
</head>
<body>
<div class="container">
<h1>Rika's Betting Salon</h1>
<form onsubmit="return App.testfunction()" id="betForm">
<div class="form-group">
<label for="BetAmount">Bet Amount (in eth)</label>
<input type="number" class="form-control" id="BetAmount" placeholder="1 ETH">
</div>
<div class="form-group">
<label for="TeamSelection">Team Selection</label>
<select class="-control" id="TeamSelection">
<option>Team 1</option>
<option>Team 2 </option>
</select>
</div>
<button type="submit" class="btn btn-primary">Submit</button>
</form>
</div>
</body>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.12.4/jquery.min.js"></script>
<!-- !-- Include all compiled plugins (below), or include individual files as needed -->
<!-- <script src="js/bootstrap.min.js"></script> -->
<script src="./node_modules/web3/dist/web3.min.js"></script>
<script src="./truffle-contract.js"></script>
<script src="./src/app2.js"></script>
<script>
</script>
</html>