-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathe-index.html
83 lines (69 loc) · 2.88 KB
/
e-index.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
<!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">
<title>E-voting portal</title>
<link rel="stylesheet" type="text/css" href="css/e-style.css">
<link rel="stylesheet" type="text/css" href="css/fontawesome.min.css">
<script src="https://kit.fontawesome.com/783adfae21.js" crossorigin="anonymous"></script>
</head>
<body>
<div class="flex-container">
<div><i class="fa-solid fa-phone phone-icon"></i></div>
<div>
phone: <strong>+234-INEC</strong>
</div>
<div><a href="#"><i class='fab fa-facebook-f f-icon'></i></a>
</div>
<div><a href="#"><i class='fab fa-telegram-plane t-icon'></i></a>
</div>
<div><a href="#"><i class='fab fa-youtube u-icon'></i></a>
</div>
<div><a href="#"><i class='fab fa-twitter tw-icon'></i></a></div>
<div>
<i class="fa fa-map-marker location-icon" aria-hidden="true"></i> INEC Address
</div>
</div>
<header>
<div class="row">
<span>E-VOTING</span>
<ul class="main-nav">
<li><a href="#">Home</a></li>
<li><a href="#">About us</a></li>
<li><a href="#">Registration</a></li>
<li><a href="#">Help</a></li>
<li><a href="#">Contact us</a></li>
<li><a href="#">Feedback</a></li>
</ul>
<input type="search" placeholder="search">
</div>
<h2 class="members"> REGISTERED VOTERS</h2>
<div class="content">
<p>Please enter the user ID as communicated to you and enter your provided password. After entering
the login details, you would be able to select the political party for which you intend to vote.</p>
<div class="form clearfix">
<div class="col-25">
<label for="user-id">USER ID</label>
</div>
<div class="col-75">
<input type="text" for="user-id" name="user-id" placeholder="ENTER YOUR USER ID" required>
</div><br>
<div class="col-25">
<label for="password">PASSWORD</label>
</div>
<div class="col-75">
<input type="password" for="password" name="password" placeholder="ENTER YOUR PASSWORD">
</div>
<div class="login">
<input type="submit" for="password" name="password" value="login">
</div>
</div>
</div>
</header>
<footer>
<p>Copyright © 2022 LivingHopeDev. All right reserved.</p>
</footer>
</body>
</html>