forked from TeamGreeenLantern/citizen-portal
-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
103 lines (90 loc) · 3.12 KB
/
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
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Citizen Portal landing page</title>
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/bulma/0.9.0/css/bulma.min.css"
integrity="sha512-ADrqa2PY1TZtb/MoLZIZu/Z/LlPaWQeDMBV73EMwjGam43/JJ5fqW38Rq8LJOVGCDfrJeOMS3Q/wRUVzW5DkjQ=="
crossorigin="anonymous" />
<script defer src="https://use.fontawesome.com/releases/v5.3.1/js/all.js"></script>
<link rel="stylesheet" href="./assets/css/styles.css">
</head>
<body>
<section class="hero is-link">
<!-- Hero head: will stick at the top -->
<div class="hero-head">
<nav class="navbar">
<div class="container">
<div class="navbar-brand">
<span class="navbar-burger burger" data-target="navbarMenuHeroA">
<span></span>
<span></span>
<span></span>
</span>
</div>
<div id="navbarMenuHeroA" class="navbar-menu">
<div class="navbar-end">
<a href="index.html" class="navbar-item" id="home">
Home
</a>
<a class="navbar-item" id="representatives">
Representatives
</a>
<a class="navbar-item" id="election">
Election Information
</a>
</div>
</div>
</div>
</nav>
</div>
<!-- Hero content: will be in the middle -->
<div class="hero-body">
<div class="container has-text-centered">
<h1 class="title">
Citizen Portal
</h1>
<h2 class="subtitle">
A one-stop portal to get more information about your representatives and up-to-date info on nation-wide
elections.
</h2>
</div>
</div>
</section>
<!--buttons-->
<section id="enter-your-address">
<form class="has-text-centered" id="address-form">
<br><br>
<label for="address" id="address-label">Enter your Address:</label><br>
<div>
<input class="input is-input is-medium is-rounded" type="text" id="address"></div>
<br>
<br><br>
</form>
<section class="columns is-centered is-vcentered is-mobile">
<div>
<button type="submit" class="column" id="voting-search">Get election information</button>
</div>
<div>
<button type="submit" class="column" id="representative-btn">Get to Know My Representatives</button>
</div>
</section>
</section>
<!--error modal-->
<div class="modal" id="error-modal">
<div class="modal-background"></div>
<div class="modal-card">
<header class="modal-card-head">
<p class="modal-card-title">Error</p>
<button class="delete" id="errorMod-delete" aria-label="close"></button>
</header>
<section class="modal-card-body">
<p id="error-text">Please Enter an Address</p>
</section>
</div>
</div>
<script src="https://cdnjs.cloudflare.com/ajax/libs/jquery/3.4.1/jquery.min.js"></script>
<script src="assets/js/script.js"></script>
</body>
</html>