-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathindex.html
100 lines (80 loc) · 3.62 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
<!DOCTYPE html>
<html lang="en">
<head>
<!-- REQUIRED META TAGS -->
<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>Github Jobs API</title>
<a href="https://fonts.googleapis.com/css?family=Dosis:400,700" rel="stylesheet"></a>
<!-- LINK TO LOCAL STYLESHEET -->
<link rel="stylesheet" type="text/css" href="style.css">
<!-- BOOTSTRAP CDN -->
<link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/bootstrap/4.3.1/css/bootstrap.min.css" integrity="sha384-ggOyR0iXCbMQv3Xipma34MD+dH/1fQ784/j6cY/iJTQUOhcWr7x9JvoRxT2MZw1T" crossorigin="anonymous">
</head>
<body>
<!-- BOOTSTRAP NAVBAR -->
<nav class="navbar navbar-expand-lg navbar-light bg-light">
<a class="navbar-brand" href="#">You Are Techy</a>
<button class="navbar-toggler" type="button" data-toggle="collapse" data-target="#navbarNav" aria-controls="navbarNav" aria-expanded="false" aria-label="Toggle navigation">
<span class="navbar-toggler-icon"></span>
</button>
<div class="collapse navbar-collapse" id="navbarNav">
<ul class="navbar-nav">
<li class="nav-item active">
<a class="nav-link" href="#">Home <span class="sr-only">(current)</span></a>
</li>
<li class="nav-item">
<a class="nav-link" href="#">About Us</a>
</li>
<li class="nav-item">
<a class="nav-link" href="#">Events</a>
<li class="nav-item">
<a class="nav-link" href="#">Contact Us</a>
</li>
</ul>
</div>
</nav>
<!--BOOTSTRAP JUMBOTRON -->
<div class="jumbotron jumbotron-fluid">
<div class="container">
<h1 class="display-4">Search Jobs</h1>
<!-- <p class="lead">This is a modified jumbotron that occupies the entire horizontal space of its parent.</p> -->
</div>
</div>
<!-- KEYWORD SEARCH BAR -->
<div class="wrap">
<div class="search"><br>
<input id ="userInput1" type="text" class="searchTerm" placeholder="Keywords, Title, Career"/>
<button type="submit" class="searchButton" id="keywordSearchButton">
<i class="fa fa-search"></i>Search
</button><br>
</div>
<!-- LOCATION SEARCH BAR -->
<div class="search">
<input id ="userInput2" type="text" class="searchTerm" placeholder="Location"/>
<button type="submit" class="searchButton" id="locationSearchButton">
<i class="fa fa-search"></i>Search
</button>
</div>
</div><br>
<!-- CARD -->
<div class="container-fluid">
<div class = "card">
</div>
</div>
<!-- CHECKBOXES FOR JOB TYPE -->
<<div class="cbContainer">
<h2>Advanced Filters:</h2>
<form action="/action_page.php">
<input type="checkbox" class="checkbox" id="cbFT" value="Full Time Jobs">Full Time<br>
<input type="checkbox" class="checkbox" id="cbPT" value="Part Time Jobs">Part Time<br>
<input type="checkbox" class="checkbox" id="cbCT" value="Contract Jobs">Contract<br><br>
</form>
</div>
<!-- DIV FOR CARD DISPLAY -->
<div id="root"></div>
<!-- LOCAL JS FILE -->
<script src="scripts.js"></script>
</body>
</html>