-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathsignup.html
283 lines (235 loc) · 11.4 KB
/
signup.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
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
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
<!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 rel="stylesheet" href="https://use.fontawesome.com/releases/v5.6.1/css/all.css">
<link rel="stylesheet" href="./css/sign up.css" />
<link rel="stylesheet" href="css/bootstrap.min.css">
<title>signup</title>
</head>
<header class="fixed-header">
<div class="ourwork_icon_container">
<img class="ourwork_html_icon" src="./css/assets/download (1).png" alt="html icon" />
<div>
<h1 style="color: cyan; ">BLOCKCHAIN VOTING SYSTEM</h1>
</div>
</header>
<body style="background-color: #0d3f6b;">
<main>
<br><br><br><br>
<div class="container">
<div class="row align-items-center">
<div class="col" id="col1">
<br><br><br><br>
<img src="OTP security.png" alt="">
<!--verification-->
<div class="form-container">
<h3 style="color: cyan; margin-bottom: 4%; border-left: 5px solid #fff; padding-left: 5%;">VOTER ELIGIBILITY
VERIFICATION</h3>
<h6 style="color: cyan;">Verify your eligibility to vote.</h6>
<!-- Voter ID Number -->
<div class="input-group">
<span class="input-group-text" id="basic-addon1"><i class="fa fa-address-card" aria-hidden="true"
style="color:cyan;"></i></span>
<input type="text" class="form-control" placeholder="Voter ID Number" aria-describedby="basic-addon1">
</div>
<!-- Upload ID Card -->
<div class="file-input-group">
<div class="file-input-label">Upload National Voter ID Card photos:</div>
<input type="file" id="idCardInput" accept="image/*" />
<label for="idCardInput" class="file-input-btn">Choose File</label>
</div>
<!-- Eligibility Verification Result -->
<div class="verification-result" id="verificationResult">Verification Result: <span
class="valid">Valid</span></div>
<br>
<!-- Verify Eligibility Button -->
<button type="button" class="btn btn-primary" onclick="verifyEligibility()">Verify Eligibility</button>
</div>
<!--user name-->
</div>
<div class="col">
<h3 style="color: cyan; margin-bottom:4%; border-left: 5px solid #fff; padding-left:5%;">CREATE VOTING ACCOUNT
</h3>
<br>
<h6 style="color: cyan;">Get started with us,voting is your priority</h6>
<br>
<h5 style="color: cyan;padding-top: 1%;">Not your first time?<a href="login.html">Login</a></h5>
<br>
<div class="input-group mb-3">
<span class="input-group-text" id="basic-addon1" style="background: transparent;"><i
class="fa fa-address-book" aria-hidden="true" style="color:cyan;"></i></span>
<input type="text" class="form-control" placeholder="full Usernames" aria-label="Full name"
aria-describedby="basic-addon1" style="background: transparent;">
</div>
<!--date of birth-->
<div class="input-group mb-3">
<span class="input-group-text" id="basic-addon1" style="background: transparent;">
<i class="fa fa-calendar" aria-hidden="true" style="color:cyan;"></i>
</span>
<input type="date" class="form-control" placeholder="Date of Birth" aria-label="Date of Birth"
aria-describedby="basic-addon1" style="background: transparent;">
</div>
<!-- Contact Information Field -->
<!-- Email Field -->
<div class="input-group mb-3">
<span class="input-group-text" id="basic-addon1" style="background: transparent;"><i
class="fa fa-envelope" aria-hidden="true" style="color:cyan;"></i></span>
<input type="email" class="form-control" placeholder="Email: example@example.com"
aria-describedby="basic-addon1" style="background: transparent; ">
</div>
<!--password field-->
<div class="input-group mb-3">
<span class="input-group-text" id="basic-addon1" style="background: transparent;"><i
class="fa fa-key" aria-hidden="true" style="color:cyan;"></i></span>
<input type="password" class="form-control" placeholder="password" aria-label="password"
aria-describedby="basic-addon1" style="background: transparent;">
</div>
<!-- Phone Field -->
<div class="input-group mb-3">
<span class="input-group-text" id="basic-addon1" style="background: transparent;"><i
class="fa fa-phone" aria-hidden="true" style="color:cyan;"></i></span>
<input type="tel" class="form-control" placeholder="Phone : +1 (123) 456-7890"
aria-describedby="basic-addon1" style="background: transparent;">
</div>
<!-- Add more contact information as needed -->
<!--address-->
<div class="input-group mb-3">
<span class="input-group-text" id="basic-addon1" style="background: transparent;">
<i class="fa fa-map-marker" aria-hidden="true" style="color:cyan;"></i>
</span>
<!-- County -->
<select class="form-select" aria-label="Select school">
<option selected disabled style="color: #f6f5f9;">school</option>
<option value="school1">law</option>
<option value="school2">medicine</option>
<option value="school3">IT</option>
<!-- Add more counties as needed -->
</select>
<!-- Subcounty -->
<select class="form-select" aria-label="Select department">
<option selected disabled style="color: #f5f4f7;">department</option>
<option value="department 1">IT</option>
<option value="department2">SOEN</option>
<option value="department3">COMP SCIE</option>
<!-- Add more subcounties as needed -->
</select>
<!-- Location -->
<select class="form-select" aria-label="Select year">
<option selected disabled style="color: #d5d4d7;">year</option>
<option value="YEAR1"></option>
<option value="YEAR2">YEAR2</option>
<option value="YEAR3">YEAR3</option>
<option value="YEAR4">YEAR4</option>
<!-- Add more locations as needed -->
</select>
<!-- Sublocation -->
<select class="form-select" aria-label="Select Sublocation">
<option selected disabled style="color: #d8d4d4;">Select Sublocation</option>
<option value="sublocation1">course 1</option>
<option value="sublocation2">course 2</option>
<option value="sublocation3">course 3</option>
<!-- Add more sublocations as needed -->
</select>
<!-- Address Box Number -->
<input type="text" class="form-control" placeholder="Address Box Number" aria-label="Address Box Number"
aria-describedby="basic-addon1" style="background: transparent;">
</div>
<!--id details-->
<br><br>
<div class="form-container">
<h3 style="color: cyan; margin-bottom: 4%; border-left: 5px solid #fff; padding-left: 5%;"> UPLOAD SCHOOL ID & PERSONAL PHOTO
</h3>
<h6 style="color: cyan;">Please provide school ID /photo.</h6>
<!-- ID Details -->
<div class="input-group">
<span class="input-group-text" id="basic-addon1"><i class="fa fa-address-card" aria-hidden="true"
style="color:cyan;"></i></span>
<input type="text" class="form-control" placeholder="Reg No" aria-describedby="basic-addon1">
</div>
<!-- Personal Passport Photo -->
<div class="file-input-group">
<div class="file-input-label">Upload school ID & personal photos:</div>
<input type="file" id="photoInput" accept="image/*" />
<label for="photoInput" class="file-input-btn">Choose File</label>
</div>
<!-- Personal Passport Photo -->
<div class="file-input-group">
<div class="file-input-label">Upload passport photos:</div>
<input type="file" id="photoInput" accept="image/*" />
<label for="photoInput" class="file-input-btn">Choose File</label>
</div>
<!-- Submit Button -->
<button type="button" class="btn btn-primary">Submit</button>
</div>
<!--user name-->
</div>
</div>
<a href="terms.html" id="signupButton">Register</a>
</main>
<script src="https://cdn.jsdelivr.net/npm/bootstrap@5.2.3/dist/js/bootstrap.bundle.min.js"
integrity="sha384-kenU1KFdBIe4zVF0s0G1M5b4hcpxyD9F7jL+jjXkk+Q2h455rYXK/7HAuoJl+0I4"
crossorigin="anonymous"></script>
<script>
function verifyEligibility() {
// Dummy verification logic
var isValid = Math.random() < 0.5; // Simulating random verification result
var resultElement = document.getElementById("verificationResult");
resultElement.classList.remove("valid", "invalid");
if (isValid) {
resultElement.classList.add("valid");
resultElement.textContent = "Verification Result: Valid";
} else {
resultElement.classList.add("invalid");
resultElement.textContent = "Verification Result: Invalid";
}
}
function register() {
var agreeCheckbox = document.getElementById('agree');
if (agreeCheckbox.checked) {
// Simulate registration success
alert('Successfully registered!');
} else {
alert('Please agree to the terms and conditions before registering.');
}
}
</script>
<footer>
<div id="quick-links">
<div id="brand">
<h3>VOTECHAIN</h3>
<p>
VOTE FOR FUTURE LEADERSHIP!!!<br />
</p>
</div>
<div id="footer-links">
<div>
<h3>Community</h3>
<ul class="footer-list">
<li><a href="#">About Us</a></li>
<li><a href="#">Our Work</a></li>
<li><a href="#">Support</a></li>
<li><a href="#">Knowledge Base</a></li>
</ul>
</div>
<div>
<h3>Contact Us</h3>
<ul class="footer-list">
<li><a href="#">info@VOTECHAIN.com</a></li>
</ul>
</div>
<div id="updates">
<h3>Stay up to date</h3>
<p>Get informed of our upcoming events</p>
<a href="./signup.html">
<button>Join us</button>
</a>
</div>
</div>
</div>
<marquee behavior="" direction="right">All rights reserved, Copyright © BLOCKCHAIN VOTING site Copyright 2024 </marquee>
</footer>
</body>
</html>