-
Notifications
You must be signed in to change notification settings - Fork 14
/
about.php
97 lines (74 loc) · 3.75 KB
/
about.php
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
<?php
include("header.html");
?>
<!DOCTYPE html>
<html lang="en">
<head>
<!-- Required meta tags -->
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
<!--Fonts CDN-->
<link href="https://fonts.googleapis.com/css2?family=Poppins&display=swap" rel="stylesheet">
<!-- Bootstrap CSS -->
<link rel="stylesheet" href="css/bootstrap.min.css">
<!-- Font Awesome CDN -->
<link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/font-awesome/4.7.0/css/font-awesome.min.css">
<style>
*{
margin: 0;
padding: 0;
box-sizing: border-box;
font-family: poppins;
}
</style>
</head>
<body>
<div class="container">
<div class="row">
<div class="col-md-12">
<h1 style="text-align:center; margin-top:50px;"> About </h1>
</div>
</div>
</div>
<div class="container">
<div class="row">
<div class="col-md-12">
<p>Online voting systems are software platforms used to securely conduct votes and elections. As a digital platform, they eliminate the need to cast your votes using paper or having to gather in person.
They also protect the integrity of your vote by preventing voters from being able to vote multiple times.
Many secure voting platform vendors provide supportive vote management consulting services that help organizations design and implement their voting procedures.
These services help organizations save time, stick to best practices, and meet internal requirements and/or external regulations, such as third-party vote administration needs.</p>
</div>
</div>
</div>
<div class="container">
<div class="row">
<div class="col-md-12">
<h1 style="text-align:center; margin-top:50px;"> Who can benefit from them ? </h1>
</div>
<div class="col-md-12">
<p> The short answer is: anyone who makes decisions.
Consistent, structured decision-making needs span across organization types and industries.
Individuals in organizations ranging from award shows, to law firms, to corporations, to schools will find value in online voting.
Simply put - if a group of people needs to make a decision, and that decision requires input from others, an online voting system will be of value. </p>
</div>
<div class="col-md-12">
<ul>
<li style="text-align:left; margin-left:20px;">maintains your vote’s integrity </li>
<li style="text-align:left; margin-left:20px;">provides an easy vote administrator experience</li>
<li style="text-align:left; margin-left:20px;">creates a pleasant experience for your voters </li>
<li style="text-align:left; margin-left:20px;">has mechanisms for adapting to unique votes </li>
<li style="text-align:left; margin-left:20px;">includes analytics, reporting, and auditing capabilities</li>
</ul>
</div>
</div>
</div>
<!-- Optional JavaScript -->
<!-- jQuery first, then Popper.js, then Bootstrap JS -->
<script src="js/jquery-3.2.1.slim.min.js"></script>
<script src="js/popper.min.js"></script>
<script src="js/bootstrap.min.js"></script>
</body>
</html>
<?php
include("footer.html");
?>