forked from QAZIMAAZARSHAD/Voters-Registration-Portal
-
Notifications
You must be signed in to change notification settings - Fork 0
/
help.html
419 lines (343 loc) · 13.9 KB
/
help.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
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<meta content="width=device-width, initial-scale=1" name="viewport" />
<title>Help Desk</title>
<link rel="shortcut icon" href="./Images/flag.png" type="image/x-icon">
<link href="https://unpkg.com/ionicons@4.5.10-0/dist/css/ionicons.min.css" rel="stylesheet">
<link rel="stylesheet" href="help.css">
<link rel="preconnect" href="https://fonts.gstatic.com">
<link href="https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500&display=swap" rel="stylesheet">
<link rel="stylesheet" href="https://use.fontawesome.com/releases/v5.7.2/css/all.css" integrity="sha384-fnmOCqbTlWIlj8LyTjo7mOUStjsKC4pOpQbqyi7RrhN7udi9RwhKkMHpvLbHG9Sr" crossorigin="anonymous">
<link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/bootstrap/4.3.1/css/bootstrap.min.css" integrity="sha384-ggOyR0iXCbMQv3Xipma34MD+dH/1fQ784/j6cY/iJTQUOhcWr7x9JvoRxT2MZw1T" crossorigin="anonymous">
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.5.1/jquery.min.js"></script>
<script src="https://unpkg.com/sweetalert/dist/sweetalert.min.js"></script>
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/twitter-bootstrap/4.6.0/css/bootstrap.min.css"
integrity="sha512-P5MgMn1jBN01asBgU0z60Qk4QxiXo86+wlFahKrsQf37c9cro517WzVSPPV1tDKzhku2iJ2FVgL67wG03SGnNA=="
crossorigin="anonymous">
<link rel="stylesheet" href="https://unpkg.com/aos@next/dist/aos.css">
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.5.1/jquery.min.js"></script>
</head>
<style>
#scrollToTopButton{
position: fixed;
bottom: 15px;
right: 10px;
font-size: 25px;
z-index: 99;
width: 50px;
height: 50px;
background-color: white;
color: black;
border: none;
cursor: pointer;
outline: none;
padding: 6px;
border-radius: 50%;
box-shadow: 0 6px 10px 0px gray;
}
</style>
<body>
<div class="scroll-bar">
<header>
<div class="navbar">
<div class="main-heading">
<div class="logo">
<a href="#" class="endlogo">
<img src="./Images/flag.png">
</a>
</div>
<div class="heading">
<img class="emblem" src="./Images/emblem.png">
<p class="hindi-heading" style="font-family: 'Hind', sans-serif; font-weight: bolder;" >राष्ट्रीय मतदान सेवा डेमो पोर्टल</p>
<p class="english-heading" style="font-weight: bold;">NATIONAL VOTER'S SERVICES DEMO PORTAL</p>
</div>
</div>
<div>
<input type="checkbox" class="checkbox" id="chk" />
<label class="label" for="chk">
<i class="fas fa-moon"></i>
<i class="fas fa-sun"></i>
<div class="ball"></div>
</label>
</div>
</div>
<script>
const chkk = document.getElementById('chk');
chkk.addEventListener('change', () => {
document.body.classList.toggle('dark');
});
</script>
</header>
<section class="body">
<div class="container">
<h1>How can we help you?</h1>
<div class="help-box">
<div class="help-left">
<h2>Details</h2>
<br>
<br>
<form id="form1">
<div class="input-row">
<div class="input-group">
<label><h4>Name<sup style="color:rgb(255, 8, 8)"> *</sup></h4></label>
<input type="text" id="name" placeholder="Fill your name">
</div>
<div class="input-group">
<label><h4>Email ID<sup style="color:rgb(255, 8, 8)"> *</sup></h4></label>
<input type="email" id="email" placeholder="xyz@abc.com">
</div>
</div>
<label><h4>Message<sup style="color:rgb(255, 8, 8)"> *</sup></h4></label>
<textarea rows="5" id="mess" placeholder="Your Message Here..."></textarea>
<button type="button" onclick="check()">Submit</button>
</form>
<script>
function check()
{
var name = document.getElementById("name").value;
var email= document.getElementById("email").value;
var mess= document.getElementById("mess").value;
var filter = /^([a-zA-Z0-9_\.\-]+)\@([a-zA-Z0-9]+\.*[a-zA-Z0-9]+)\.([a-zA-Z0-9]{2,4})$/;
if(name.length==0)
{
swal("Please enter your name","","info");
} else if(email.length==0 | !filter.test(email))
{
swal("Please enter a valid email","","info");
} else if(mess.length==0)
{
swal("Please enter a message","","info");
} else
{
swal('Thank you for contacting us! We will reach you soon!','','success');
$("#form1")[0].reset();
}
}
</script>
</div>
<div class="help-right">
<h2>Reach us</h2>
<table>
<tr>
<td><b>Email</b></td>
<td style="color: rgb(58, 52, 52); font-weight: bold;">help@Voterregistrationportal.com</td>
</tr>
<tr>
<td><b>Phone</b></td>
<td style="color: rgb(58, 52, 52); font-weight: bold;">123456789</td>
</tr>
<tr>
<td><b>Address</b></td>
<td style="color: rgb(58, 52, 52); font-weight: bold;">114 abc buiding, near xyz road</td>
</tr>
</table>
</div>
</div>
</div>
</section>
<!-- faq -->
<div class="container">
<div class="row">
<div class="col-md-6">
<div class="accordion">
<div class="accordion-item" id="question1">
<a class="accordion-link " href="#question1"> Q. Is the application also available in android playstore?
</a>
<div class="answer">
Android phone based users can install an application from the website of the Government.
</div>
</div>
</div>
<div class="accordion">
<div class="accordion-item" id="question2">
<a class="accordion-link" href="#question2"> Q. Who can access the service?
</a>
<div class="answer">
A user can access the service by sending the SMS.
</div>
</div>
</div>
</div>
<div class="col-md-6">
<div class="accordion">
<div class="accordion-item" id="question3">
<a class="accordion-link" href="#question3"> Q. How can we access the server from operators?
</a>
<div class="answer">
A special five digit code is provided for accessing the service by operators such as Aircel, Airtel, BSNL, Idea, MTS, Reliance, Tata Docomo, Tata Indicom, Uninor, Videocon and Vodafone. </div>
</div>
</div>
<div class="accordion">
<div class="accordion-item" id="question4">
<a class="accordion-link" href="#question4"> Q. How can we access the service from sms?
</a>
<div class="answer">
In order to access the services through SMS, Voters must send a pre-formatted SMS with a word “ECI” followed by details such as name, name of father/husband, locality, age or date of birth and gender separated by commas. As an example, an SMS “ECI Sumit Bhattacharjee” would fetch the details of a voter by name “Sumit bhattacharjee” on a nation-wide search of voters.
</div>
</div>
</div>
</div>
</div>
</div>
<!-- faq -->
</div>
<!-- footer starts -->
<footer id="ft">
<div id="footer">
<div class="one">
<div class="contact">
<h2>Contact Us</h2>
<h3>
<i class="fas fa-phone-alt phonei"></i>
Toll free: 1947
</h3>
<h3>
<div class="envelope">
<i class="fas fa-envelope envelopei"></i>
help@nationalvoterportal.gov.in
</div>
</h3>
</div>
<div class="helpdeskDiv">
<a class="helpdesk" href="help.html" target="_blank">Help
Desk</a>
</div>
<div class="follow-us">
<h2>Follow Us</h2>
<div class="icons">
<a href="https://www.facebook.com/NationalPortalIndia/" target="_blank">
<i class="fab fa-facebook-f fbi"></i>
</a>
<a href="https://twitter.com/mygovindia?ref_src=twsrc%5Egoogle%7Ctwcamp%5Eserp%7Ctwgr%5Eauthor" target="_blank">
<i class="fab fa-twitter twi"></i>
</a>
<a href="https://www.youtube.com/watch?v=Gz2igetpSoU" target="_blank">
<i class="fab fa-youtube yti"></i>
</a>
<a href="https://www.instagram.com/mygovindia/?hl=en" target="_blank">
<i class="fab fa-instagram igi"></i>
</a>
<a href="https://www.linkedin.com/company/government-of-india" target="_blank">
<i class="fab fa-linkedin-in li"></i>
</a>
</div>
</div>
</div>
<div class="two">
<h2>NATIONAL VOTER PORTAL Head Office</h2>
<h3>unique identification authority of india</h3>
<h3>government of india</h3>
<h3>bangla sahib road, behind kali market, gole market, new delhi - 110001</h3>
<h2>Regional Offices</h2>
<select name="place" id="place">
<option value="delhi">Delhi</option>
</select>
<h3>National Voter Portal Regional Office, Delhi</h3>
<h3>Ground floor, pragati maidan metro station, new delhi - 110001</h3>
</div>
<div class="three">
<h4>Website Policy</h4>
<h4>terms and conditions</h4>
<h4>privacy policy</h4>
<h4>hyperlinking policy</h4>
<h4>copyright policy</h4>
<h4>disclaimer</h4>
<h4>help</h4>
<h4>feedback</h4>
<h4>sitemap</h4>
</div>
<div class="four">
<h2>Government of India</h2>
<h4>Integrity Pledge
<i class="fas fa-external-link-alt"></i>
</h4>
<ul>
<li>
<a href="#">
My Gov <i class="fas fa-external-link-alt"></i>
</a>
</li>
<li>
<a href="#">
National Voter Portal
<i class="fas fa-external-link-alt"></i>
</a>
</li>
<li>
<a href="#">
Digital India <i class="fas fa-external-link-alt"></i>
</a>
</li>
<li>
<a href="#">
GST.gov.in <i class="fas fa-external-link-alt"></i>
</a>
</li>
<li>
<a href="#">
DBT Bharatpur <i class="fas fa-external-link-alt"></i>
</a>
</li>
</ul>
</div>
</div>
<div class="footer-down">
<div class="copyright" style="padding-bottom:20px">
Copyright ©
<script>document.write(new Date().getFullYear())</script> Qazi Maaz Arshad
</div>
</div>
</footer>
<!-- footer ends -->
<script>
const chk = document.getElementById('chk');
chk.addEventListener('change', () => {
document.body.classList.toggle('dark');
});
</script>
<button id="scrollToTopButton" title="Go to top" class="ml-5" >
<i class="fa fa-angle-double-up" aria-hidden="true" style="color: black;font-weight: bolder;"></i>
</button>
<script>
$(document).ready(function(){
var scrollTopButton = document.getElementById("scrollToTopButton");
window.onscroll = function () { scrollFunction() };
function scrollFunction() {
if (document.body.scrollTop > 20 || document.documentElement.scrollTop > 20) {
scrollTopButton.style.display = "block";
} else {
scrollTopButton.style.display = "none";
}
}
$("#scrollToTopButton").click(function(){
$('html ,body').animate({scrollTop : 0},800)
});
});
</script>
<script>
var accordionlinks = document.querySelectorAll(".accordion-link")
var header= document.querySelector(".header")
accordionlinks.forEach((accordionlink)=>{
accordionlink.addEventListener('click',event=>{
const anyActiveLinks = document.querySelector(".accordion-link.active")
if(anyActiveLinks && anyActiveLinks!==accordionlink)
{
anyActiveLinks.classList.toggle("active")
anyActiveLinks.nextElementSibling.style.maxHeight=0;
}
accordionlink.classList.toggle("active")
const answer = accordionlink.nextElementSibling;
if(accordionlink.classList.contains("active")){
answer.style.maxHeight = answer.scrollHeight + "px";
// header.classList.add("header-color-white")
}
else{
answer.style.maxHeight = 0;
}
})
})
</script>
</body>
</html>