-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
58 lines (58 loc) · 1.99 KB
/
index.html
File metadata and controls
58 lines (58 loc) · 1.99 KB
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<link
rel="stylesheet"
href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.1.1/css/all.min.css"
integrity="sha512-KfkfwYDsLkIlwQp6LFnl8zNdLGxu9YAA1QvwINks4PhcElQSvqcyVLLD9aMhXd13uQjoXtEKNosOWaZqXgel0g=="
crossorigin="anonymous"
referrerpolicy="no-referrer"
/>
<link
rel="stylesheet"
href="https://cdnjs.cloudflare.com/ajax/libs/bootswatch/4.6.1/cyborg/bootstrap.min.css"
integrity="sha512-FRIUlNrWCABgd2R533FVfrSoeEbFOtuh1X7NbiNHw+7Nb5whngDAkZ9V4VPNx1w9CQZ9LIWoeymUdM6mcDdSOQ=="
crossorigin="anonymous"
referrerpolicy="no-referrer"
/>
<title>GitHub Search App</title>
</head>
<body>
<div class="container mt-5"></div>
<div class="row">
<div class="col-md-6 m-auto">
<h3 class="text-center mb-3">
<i class="fab fa-github"></i> GitHub Search
</h3>
<form class="form-group flex" id="form">
<label for="select" class="form-label">Select</label>
<select class="form-select" id="select">
<option>Code</option>
<option>Commits</option>
<option>Issues</option>
<option>Labels</option>
<option>Repositories</option>
<option>Topics</option>
<option>Users</option>
</select>
<input
class="form-control form-control-lg"
id="search"
type="text"
placeholder="Search..."
/>
<button class="btn btn-primary" type="submit">Search</button>
</form>
<div
class="progress-bar-striped progress-bar-animated"
id="progress-container"
></div>
<div class="mt-5" id="results-list"></div>
</div>
</div>
<script src="index.js"></script>
<script src="https://unpkg.com/axios/dist/axios.min.js"></script>
</body>
</html>