-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathhead.php
More file actions
97 lines (85 loc) · 4.02 KB
/
head.php
File metadata and controls
97 lines (85 loc) · 4.02 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
84
85
86
87
88
89
90
91
92
93
94
95
96
97
<div class="container-fluid">
<div class='row'>
<div class="col-md-12 bg-dark text-white">
<br>
<h1 style="text-align:center">ONLINE VOTING WEBSITE</h1>
<p style="text-align:center">Website for the elections of CR's and TPR's</p>
</div></div>
</div>
<nav class="navbar navbar-expand-sm bg-dark navbar-dark sticky-top">
<!-- Brand/logo -->
<a class="navbar-brand" href="http://iiitu.ac.in/">
<img src="image/logo.jpg" alt="logo" style="width:50px; class= border primary">
</a>
<div class="collapse navbar-collapse justify-content-between" id="navbar">
<div class="btn-group btn-group-lg">
<button type="button" class="btn btn-primary" class="active nav-item nav-link" href="#">Home</a> </button>
<button type="button" class="btn btn-dark text-white btn-outline-primary" class="active nav-item nav-link" href="#">About</a> </button>
<button type="button" class="btn btn-dark text-white btn-outline-primary" class="active nav-item nav-link" href="#">Contact</a> </button>
</div>
</body>
<div class="navbar-nav">
<div class="dropdown float-right">
<button type="button" class="btn btn-dark text-white btn-outline-primary dropdown-toggle" data-toggle="dropdown">
Admin Login
</button>
<div class="dropdown-menu">
<a class="dropdown-item" href="admin_login.php">Administrator</a>
</div>
</div>
<div class="dropdown float-right">
<button type="button" class="btn btn-dark text-white btn-outline-primary dropdown-toggle" data-toggle="dropdown">
Sign Up
</button>
<div class="dropdown-menu dropdown-menu-right">
<h5 class="dropdown-header">Sign Up as</h5>
<a class="dropdown-item" href="Branch_signup.php">Voter</a>
<a class="dropdown-item disabled" href="sign_up1.php">Administrator</a>
</div>
</div>
</div>
</nav>
<div class="container fluid">
<div class="bgimg">
<div id="demo" class="carousel slide" data-ride="carousel">
<!-- Indicators -->
<ul class="carousel-indicators">
<li data-target="#demo" data-slide-to="0" class="active"></li>
<li data-target="#demo" data-slide-to="1"></li>
<li data-target="#demo" data-slide-to="2"></li>
</ul>
<!-- The slideshow -->
<div class="carousel-inner">
<div class="carousel-item active">
<img src="image/img_3.jpeg" alt="vote" width="1100" height="500">
<div class="carousel-caption">
<h3>Los Angeles</h3>
<br></br><br></br><br></br><br>
<p>We had such a great time in LA!</p>
</div>
</div>
<div class="carousel-item">
<img src="image/img_4.jpg" alt="vote" width="1100" height="500">
</div>
<div class="carousel-item">
<img src="image/img_1.png" alt="vote" width="1100" height="500">
</div>
</div>
<!-- Left and right controls -->
<a class="left carousel-control" href="#demo" role="button" data-slide="prev">
<span class="glyphicon glyphicon-chevron-left" aria-hidden="true"></span>
<span class="sr-only">Previous</span>
</a>
<a class="right carousel-control" href="#demo" role="button" data-slide="next">
<span class="glyphicon glyphicon-chevron-right" aria-hidden="true"></span>
<span class="sr-only">Next</span>
</a>
<div id="band" class="container text-center">
<h3>ABOUT US</h3>
<p><em>We Introduce Online Voting!</em></p>
<p> We enables voters to cast their vote privately and easily from any location and on any device with Internet access (PC, tablet, smartphone, etc.), ensuring maximum election engagement by enabling remote and disabled voters to participate on equal terms.
Voter privacy, election integrity, end-to-end security, vote correctness and full verifiability (individual and universal) are guaranteed via advanced cryptographic protocols. This enables election officials to assure citizens that their votes remain cast-as-intended, recorded-as-cast and counted-as-recorded. In addition to the added accessibility and security, operational efficiencies result from significantly reduced costs and the delivery of more timely and accurate results.</p>
<br>
</div>
</div>
</div>