-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
230 lines (226 loc) · 14 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
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<title>Boring Political App</title>
<!-- Links -->
<!-- Firebase -->
<script src="https://www.gstatic.com/firebasejs/4.12.1/firebase.js"></script>
<!-- interact.js -->
<script src="https://cdn.jsdelivr.net/npm/[email protected]/dist/interact.min.js"></script>
<!-- Bootstrap Latest compiled and minified CSS -->
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/css/bootstrap.min.css" integrity="sha384-BVYiiSIFeK1dGmJRAkycuHAHRg32OmUcww7on3RYdg4Va+PmSTsz/K68vbdEjh4u" crossorigin="anonymous">
<!-- Bootstrap Optional theme -->
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/css/bootstrap-theme.min.css" integrity="sha384-rHyoN1iRsVXV4nD0JutlnGaslCJuC7uwjduW9SVrLvRYooPp2bWYgmgJQIXwl/Sp" crossorigin="anonymous">
<!-- Google Fonts -->
<link href="https://fonts.googleapis.com/css?family=Raleway:400,600,700|Roboto" rel="stylesheet">
<!-- Font Awesome -->
<link rel="stylesheet" href="https://use.fontawesome.com/releases/v5.0.9/css/all.css" integrity="sha384-5SOiIsAziJl6AWe0HWRKTXlfcSHKmYV4RBF18PPJ173Kzn7jzMyFuTtk8JA7QQG1" crossorigin="anonymous">
<!-- CSS -->
<link rel="stylesheet" href="assets/styling/styles.css">
</head>
<body>
<div class="wrapper">
<div class="container">
<!-- START OF PAGE 1 DIV -->
<div id="page1">
<!-- START OF PAGE 1 INTERNAL CONTENT -->
<header class="header">
<div class="row page-1-title">
<div class="col-md-12">
<div class="text-center">
<h1>Boring Political App</h1>
</div>
</div>
</div>
<div class="row">
<div class="col-md-2 col-sm-2 col-xs-0"></div>
<div class="col-md-8 col-sm-8 col-xs-12 text-center page-1-description"><h2>See what your government is up to by discovering upcoming political bills that interest you.</h2></div>
<div class="col-md-2 col-sm-2 col-xs-0"></div>
</div>
</header>
<main class="main">
<div class="row">
<div class="col-md-1"></div>
<div class="col-md-10">
<form>
<div class="form-group">
<div class="input-group">
<input type="text" class="input-styling" placeholder="Topic of Interest" aria-label="Search for a topic" id="searchTopicInput1" >
<span class="input-group-btn">
<button class="btn-styling submit-btn-style" aria-label="Search button" type="submit" id="searchTopicButton1">
<span>Search</span>
<div class="magnify-icon">
<i class="fas fa-search"></i>
</div>
</button>
</span>
</div>
</div>
</form>
</div>
<div class="col-md-1"></div>
</div>
<div class="row">
<div class="col-md-12 topic-btn-area">
<div class="panel-header-style text-center">
Hot Topics<hr>
</div>
<div class="panel-body text-center" id="buttonsPanel1" aria-label="Buttons for hot topics">
<!-- Append JS Hot Topic buttons here. To #buttonsPanel1-->
</div>
<div class="panel-header-style text-center">
Recent Searches By Users<hr>
</div>
<div class="panel-body text-center" id="buttonsPanel2" aria-label="Recent user searches - buttons">
<!-- Append JS Recent Search buttons here. To #buttonsPanel2-->
</div>
</div>
</div>
</main>
<!-- END OF PAGE 1 INTERNAL CONTENT -->
</div>
<!-- END OF PAGE 1 DIV -->
<!-- START OF PAGE 2 DIV -->
<div id="page2">
<!-- START OF PAGE 2 INTERNAL CONTENT -->
<header class="header">
<div class="row top-row">
<div class="col-md-4 col-sm-8">
<div class="title">Boring Political App</div>
</div>
<div class="col-md-2 col-sm-4 nav-links">
<a href="index.html"><i class="fas fa-home font-awesome-icons"></i>Home</a>
</div>
<div class="col-md-6 col-sm-12">
<form>
<div class="form-group">
<div class="input-group">
<input type="text" class="input-styling" aria-label="Search for a topic" placeholder="Topic of Interest" id="searchTopicInput2">
<span class="input-group-btn">
<button class="btn-styling submit-btn-style" aria-label="Search button" type="submit" id="searchTopicButton2">
<span>Search</span>
<div class="magnify-icon">
<i class="fas fa-search"></i>
</div>
</button>
</span>
</div>
</div>
</form>
</div>
</div>
</header>
<main class="main">
<div class="holder" id="billContainer">
<div class="row">
<div class="col-md-6 col-sm-4">
<div class="row" id="billHolder">
<!-- Append JS draggable bills here. To #billHolder-->
</div>
</div>
<div class="col-md-6 col-sm-8 col" id="rightCol">
<div class="row" class="sidebar-dropzone" id="sidebar">
<div class="panel-body">
<div id="dropzone" class="col-md-12 col-xs-0 dropzone"><div class="drop-here-text text-center">Drag & Drop <br>Bills Here</div></div>
</div>
</div>
</div>
</div>
<div class="row">
<div class="col-sm-12 col-xs-12">
<div id="accordianBillHolder">
<!-- Append JS bills for mobile accordion view here -->
</div>
</div>
</div>
</div>
</main>
<!-- END OF PAGE 2 INTERNAL CONTENT -->
</div>
<!-- END OF PAGE 2 DIV -->
<!-- START OF PAGE 3 DIV -->
<div id="page3">
<!-- START OF PAGE 3 INTERNAL CONTENT -->
<header class="header">
<div class="row top-row">
<div class="col-md-4 col-sm-8">
<div class="title">Boring Political App</div>
</div>
<div class="col-md-2 col-sm-4 nav-links">
<a href="index.html"><i class="fas fa-home font-awesome-icons"></i>Home</a>
</div>
<div class="col-md-6 col-sm-12">
<form>
<div class="form-group">
<div class="input-group">
<input type="text" class="input-styling" aria-label="Search for a topic" placeholder="Topic of Interest" id="searchTopicInput3">
<span class="input-group-btn">
<button class="btn-styling submit-btn-style" aria-label="Search button" type="submit" id="searchTopicButton3">
<span>Search</span>
<div class="magnify-icon">
<i class="fas fa-search"></i>
</div>
</button>
</span>
</div>
</div>
</form>
</div>
</div>
</header>
<main class="main">
<div class="row">
<div class="col-md-12">
<div class="panel-styling">
<div class="panel-header-style text-center">
<h2 id="getInvolvedHeader">Contact Your Legislative Representatives</h2>
</div><hr>
<div class="panel-body" id="electedOfficialsPanel">
<div class="row" id="reps">
<!-- Append JS elected officials headshot and title cards here -->
</div>
<div class="row" id="addressPopup">
<div class="col-xs-0 col-sm-2 col-md-3"></div>
<div class="col-xs-12 col-sm-8 col-md-6">
<form>
<div class="form-group">
<label for="input-street-address">Street Address:</label>
<input type="text" class="input-styling" id="inputAddress" placeholder="Format: 123 Main Street" required/>
</div>
<div class="form-group">
<label for="input-city">City:</label>
<input type="text" class="input-styling" id="inputCity" placeholder="Format: Greensboro" required/>
</div>
<div class="form-group">
<label for="input-state">State:</label>
<input type="text" class="input-styling" id="inputState" placeholder="Format: NC" required/>
</div>
<button type="submit" class="btn-styling submit-btn-style" id="submitAddressButton">Submit</button>
</form>
</div>
<div class="col-sm-2 col-md-3" id="inputRequired" aria-label="Input required to move forward"></div>
</div>
</div>
</div>
</div>
</div>
</main>
<!-- END OF PAGE 3 INTERNAL CONTENT -->
</div>
<!-- END OF PAGE 3 DIV -->
</div>
<!-- END OF PAGE CONTAINER -->
</div>
<!-- END OF PAGE WRAPPER -->
<!-- Scripts -->
<!-- Jquery -->
<script src="https://code.jquery.com/jquery-3.3.1.js" integrity="sha256-2Kok7MbOyxpgUVvAk/HJ2jigOSYS2auK4Pfzbm7uH60=" crossorigin="anonymous"></script>
<!-- Bootstrap Latest compiled and minified JavaScript -->
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/js/bootstrap.min.js" integrity="sha384-Tc5IQib027qvyjSMfHjOMaLkfuWVxZxUPnCJA7l2mCWNIpG9mGCD8wGNIcPD7Txa" crossorigin="anonymous"></script>
<!-- javascript -->
<script type="text/javascript" src="app.js"></script>
</body>
</html>