-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathregistration.html
More file actions
83 lines (63 loc) · 2.81 KB
/
registration.html
File metadata and controls
83 lines (63 loc) · 2.81 KB
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
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>Register Here - Voting</title>
<link href="css/semantic.min.css" rel="stylesheet">
<link href="https://maxcdn.bootstrapcdn.com/font-awesome/4.7.0/css/font-awesome.min.css" rel="stylesheet">
<style type="text/css">
body{background-color:#DADADA;}
body>.grid{height:100%;}
.image{margin-top:-100px;}
.column{max-width:550px;}
.steps{display: none;}
.text { font-size: 1.2rem;}
div.ui.very.relaxed.divided.list { text-align: left; }
.fixed.bottom.menu { bottom: 0; top: auto;}
.container.footer {font-size: 0.9rem !important; padding: 10px 0;}
</style>
</head>
<body class="page page-default">
<div class="ui middle aligned center aligned grid">
<div class="column">
<div id="stepone" class=" stepone">
<h2 class="ui massive header">
<div class="ui black huge header">Register Here</div>
</h2>
<form class="ui huge stackable form very padded segment blue" id="register" method="post" enctype="mutipart/form-data">
<div class="field">
<input type="text" name="aadhar_id" id="aadhar_id" placeholder="Aadhaar number" value="">
</div>
<div class="field">
<input class="ui massive input" type="password" name="password" id="password" placeholder="Password" required="required" value="" />
</div>
<div class="field">
<label for="file" class="ui icon button" id="divUpload">
<i class="fa fa-upload" aria-hidden="true"></i>
Upload Fingerprint
</label>
<input type="file" id="hidden-new-file" name="file" style="display: none">
</div>
<input type="hidden" value="" id="address" name="address" />
<button class="ui fluid green massive button submit-button" type="submit">Register now!</button>
<div class="ui divider hidden"></div>
<small>If you have already registered, you can <a id="skiptovote" href="vote-index.html">Skip to Voting</a></small>
<div class="ui error message"></div>
</form>
<div class="ui fixed bottom menu">
<div class="ui text container footer">Lorem ipsum dolor sit amet, consectetur adipisicing elit. Illum beatae necessitatibus quam esse aliquam voluptatem, quis incidunt quia aspernatur.</div>
</div>
</div>
</div>
</div>
<script src="js/jquery.min.js"></script>
<script src="js/semantic.min.js"></script>
<script src="js/lightwallet.min.js"></script>
<script src="js/web3.js"></script>
<script src="js/hooked-web3-provider.js"></script>
<script src="js/async.js"></script>
<script src="js/ui.js"></script>
</body>
</html>