-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsendProposal.html
More file actions
31 lines (29 loc) · 994 Bytes
/
sendProposal.html
File metadata and controls
31 lines (29 loc) · 994 Bytes
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
<!DOCTYPE html>
<html>
<head>
<title>Authentication over Ethereum </title>
<link href='https://fonts.googleapis.com/css?family=Open+Sans:400,700' rel='stylesheet' type='text/css'>
<link href='https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/css/bootstrap.min.css' rel='stylesheet' type='text/css'>
</head>
<body class="container">
<div class="row">
<div class="col-md-6">
<h1>Sending a proposal</h1>
<input type="text" id="preference" placeholder="Preference"/>
<input type="number" id="period" placeholder="Period" />
<a href="#" onclick="sendProposal()" class="btn btn-primary">Propose</a>
</div>
<div class="col-md-6">
<h1>Current Proposal</h1>
</div>
</div>
<div class="row">
<div class="col-md-6">
<h1>Vote For Proposal</h1>
</div>
</div>
</body>
<script src="https://cdn.rawgit.com/ethereum/web3.js/develop/dist/web3.js"></script>
<script src="https://code.jquery.com/jquery-3.1.1.slim.min.js"></script>
<script src="./main.js"></script>
</html>