-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathappeal
35 lines (29 loc) · 1.24 KB
/
appeal
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
<!DOCTYPE html>
<html>
<head>
<meta charset='utf-8'>
<meta http-equiv='X-UA-Compatible' content='IE=edge'>
<title>Web 3 Demo</title>
<meta name='viewport' content='width=device-width, initial-scale=1'>
<link href="css/bootstrap.min.css" rel="stylesheet">
</head>
</head>
<body>
<h1>Appeal here</h1>
<br>
<p id="accountAddress" class="text-center"></p>
<label for="name">Name</label><input type="text" id="name" placeholder="enter name here"></input>
<br><label for="occupation">Occupation</label><input type="text" id="occupation" placeholder=" e.g. farmer"></input>
<br><label for="adress">Address</label><input type="text" id="adress" placeholder=" e.g. House no 707, Colony 4, Sector 112, Gurugram"></input>
<br><br><button id="send" onclick="App.appeal()">Appeal</button>
<br><br>
<span id="status"></span>
<br>
<span class="hint"><strong>Hint:</strong> open the browser developer console to view any errors and warnings.</span>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.12.4/jquery.min.js"></script>
<script src="js/bootstrap.min.js"></script>
<script src="js/web3.min.js"></script>
<script src="js/truffle-contract.js"></script>
<script src="js/app.js"></script>
</body>
</html>