-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.php
52 lines (49 loc) · 1.87 KB
/
index.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
<!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, shrink-to-fit=no">
<meta name="description" content="">
<meta name="author" content="Ansonika">
<title>Alpha Simple Voting System</title>
<!-- GOOGLE WEB FONT -->
<link href="https://fonts.googleapis.com/css?family=Poppins:300,400,500,600,700,800" rel="stylesheet">
<!-- Bootstrap core CSS -->
<link href="./assets/css/bootstrap/bootstrap.min.css" rel="stylesheet">
<link href="./assets/css/style/cover.css" rel="stylesheet">
<!-- Icon fonts-->
<link href="css/font-awesome/font-awesome.min.css" rel="stylesheet" type="text/css">
<style>
.bd-placeholder-img {
font-size: 1.125rem;
text-anchor: middle;
-webkit-user-select: none;
-moz-user-select: none;
-ms-user-select: none;
user-select: none;
}
@media (min-width: 768px) {
.bd-placeholder-img-lg {
font-size: 3.5rem;
}
}
</style>
</head>
<body class="text-center">
<div class="cover-container d-flex w-100 h-100 p-3 mx-auto flex-column">
<header class="masthead mb-auto">
<div class="inner">
<h3 style="text-align: center;">Alpha Simple Voting System</h3>
</div>
</header>
<main role="main" class="inner cover">
<h1 class="cover-heading">ASVS</h1>
<p class="lead">Welcome to Alpha Simple Voting System<br>
To participate in this election you need to be a member.</p>
<p class="lead"><a href="./register.php" class="btn btn-lg btn-info">REGISTER</a></p>
<p class="lead">Already a member? <a href="./login.php"><b>SIGN IN</b></a></p>
</main>
</div>
</body>
</html>