-
Notifications
You must be signed in to change notification settings - Fork 4
/
index2.html
78 lines (72 loc) · 2.81 KB
/
index2.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
<!DOCTYPE html>
<html lang="en" dir="ltr">
<head>
<link rel="stylesheet" href="css/bootstrap.css">
<link rel="stylesheet" href="css/styles.css">
<link rel="shortcut icon" href="/images/logo2.jpeg">
<meta charset="utf-8">
<title>Landing page</title>
</head>
<body>
<div class="container text-white">
<div class="image" id="vote">
<div id='candidates-standings'>
<h3>Casted Votes</h3>
<ul>
<li>Uhuru: <span id='u'>0</span></li>
<li>Rao: <span id='r'>0</span></li>
<li>Kalembe: <span id='k'>0</span></li>
<li>Miguna: <span id='m'>0</span></li>
</ul>
</div>
<form id='form'>
<div class="form-row">
<div class="form-group col-md-6">
<label for="fname">First Name</label>
<input required type="name" class="form-control" id="inputFname">
</div>
<div class="form-group col-md-6">
<label for="sname">Second Name</label>
<input required type="sname" class="form-control" id="inputSname">
</div>
</div>
<div class="form-group">
<label for="id">Identification Number</label>
<input required type="text" class="form-control" id="inputIdentificationNumber" placeholder="1234 no">
</div>
<div class="form-row">
<div class="form-group col-md-6">
<label for="inputCounty">County</label>
<input required type="text" class="form-control" id="inputCounty">
</div>
<div class="form-group col-md-2">
<label for="inputCountyCode">County code</label>
<input required type="text" class="form-control" id="inputZip">
</div>
</div>
<div class="form-group">
<div class="form-check">
<input class="form-check-input" type="checkbox" id="gridCheck">
<label class="form-check-label" for="gridCheck">
Check me out
</label>
</div>
</div>
<div class="form-group">
<label>Cast your vote</label>
<select id='candidates' required>
<option>Candidates</option>
<option value="Uhuru">Uhuru</option>
<option value="Rao">Rao</option>
<option value="Kalembe">Kalembe</option>
<option value="Miguna">Miguna</option>
</select>
</div>
<button type="submit" class="btn btn-primary" id="vote">Vote</button>
</form>
</div>
</div>
<script src="/js/jquery-3.4.1.js"></script>
<script src="/js/scripts.js"></script>
</body>
</html>