-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
78 lines (78 loc) · 3.65 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
<!DOCTYPE html>
<html lang="en">
<head>
<title>Resources for Adults in Maine with Autistic Spectrum Disorder</title>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
<meta name="description" content="Resources for adults with autistic specturm disorder in Maine">
<meta name="author" content="Scott C. MacCallum">
<link href="vendor/bootstrap/css/bootstrap.min.css" rel="stylesheet">
<link href="vendor/select2/css/select2.min.css" rel="stylesheet">
<link href="https://fonts.googleapis.com/icon?family=Material+Icons" rel="stylesheet">
<link rel="stylesheet" href="https://use.fontawesome.com/releases/v5.8.1/css/all.css" integrity="sha384-50oBUHEmvpQ+1lW4y57PTFmhCaXp0ML5d60M1M7uH2+nqUivzIebhndOJK28anvf" crossorigin="anonymous">
<link href="css/home.css" rel="stylesheet">
<link href="css/shared.css" rel="stylesheet">
<script src="vendor/jquery/jquery.min.js"></script>
<script src="vendor/bootstrap/js/bootstrap.bundle.min.js"></script>
<script src="vendor/select2/js/select2.min.js"></script>
<script src="js/core/mappingCore.js"></script>
<script src="js/core/geocoder.js"></script>
<script src="js/home/homeController.js"></script>
<script>
$(document).ready(() => {
const homeController = new HomeController();
});
</script>
</head>
<body>
<header class="py-5 mb-5" id="home">
<div class="container h-100">
<div class="row h-100 align-items-center">
<div class="col-lg-12">
<h1 id="hero-title" class="display-4 text-black mt-5 mb-2">Adults with ASD</h1>
</div>
</div>
<div class="row" id="filter-container">
<div class="col-md-1 col-sm-0"></div>
<div class="col-md-10">
<h2 id="hero-search-title" style="color: #404040;">Search for Resources</h2>
<form id="search-form" class="mt-3">
<div class="row mb-5 d-flex align-items-center">
<div class="col-md-5 col-sm-9 col-8 mb-3 ">
<label for="zip-code"><strong>Zip code</strong></label>
<input required pattern="^([0-9]{5})\s*[-]?\s*([0-9]{4})?\s*$" minlength="5" maxlength="10" type="text" class="form-control" id="zip-code" name="zip-code" aria-describedby="hero-zip-help" placeholder="Example: 03901">
<small id="hero-zip-help" class="form-text text-muted">Maine zip code</small>
</div>
<div class="col-md-4 col-sm-12 mb-3">
<label for="radius-select"><strong>Miles</strong></label>
<select required class="custom-select form-control select-default" id="radius-select" aria-describedby="hero-radius-help">
<option value="">Choose</option>
<option value="10">10</option>
<option value="20">20</option>
<option value="20">30</option>
<option value="50">50</option>
</select>
<small id="hero-radius-help" class="form-text text-muted">Maximum travel distance from zip code</small>
</div>
<div class="col-12">
<label for="zip-code"><strong>Categories</strong></label>
<select required class="custom-select select-default" aria-describedby="hero-category-help" id="category-select" name="category-select[]" multiple="multiple"></select>
<small id="hero-category-help" class="form-text text-muted">Select one or more categories</small>
</div>
</div>
<button type="submit" id="search-button" class="btn btn-primary btn-block">Search</button>
</form>
</div>
</div>
<div class="col-md-1 col-sm-0"></div>
</div>
</header>
<footer class="py-5 bg-dark" id="home-footer">
<div class="container">
<p id="footer-text" class="m-0 text-center text-white">
Copyright © 2020 Scott C. MacCallum and OpenMaine
</p>
</div>
</footer>
</body>
</html>