-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
51 lines (44 loc) · 1.42 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Searching</title>
<link rel="stylesheet" href="css/reset.css">
<link rel="stylesheet" href="css/style.css">
<link
href="https://unpkg.com/@primer/css/dist/primer.css"
rel="stylesheet"
/>
</head>
<body>
<header class="Header">
<h1 class="h1">Searching...</h1>
</header>
<section class="Box content-holder">
<label for="enter-user">Enter user name:</label></br>
<input
class="form-control input-monospace m-4"
aria-label="SHA"
type="text"
data-userInput
name="enter-user"
placeholder="ex: pachicodes"
/><br />
<button data-button class="btn btn-outline mr-2" type="submit">Search</button><br />
</section>
<section data-resultCount class="flash content-holder">
</section>
<section data-resultsCards class="content-holder">
</section>
<nav data-pagination class="paginate-container" aria-label="Pagination">
<div class="pagination">
<a data-previous class="previous_page" rel="previous" aria-label="Previous Page">Previous</a>
<a data-next class="next_page" rel="next" aria-label="Next Page"
>Next</a
>
</div>
</nav>
<script src="app.js"></script>
</body>
</html>