-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
61 lines (58 loc) · 2.11 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
<!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" />
<link
href="https://fonts.googleapis.com/css?family=IBM+Plex+Sans:400,400i,700&display=swap"
rel="stylesheet"
/>
<link
rel="stylesheet"
href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/5.11.2/css/all.min.css"
/>
<link rel="stylesheet" href="./assets/css/style.css" />
<title>Git it Done</title>
</head>
<body class="flex-column min-100-vh">
<header class="hero">
<h1 class="app-title"><i class="fab fa-github"></i> Git it Done!</h1>
<p>
Search for a GitHub user or click on a language to see a list of
repositories and how many open issues they have!
</p>
</header>
<main class="flex-row justify-space-between">
<div class="col-12 col-md-4">
<div class="card">
<h3 class="card-header text-uppercase">Search By User</h3>
<form id="user-form" class="card-body">
<label class="form-label" for="username">Username</label>
<input
name="username"
id="username"
type="text"
autofocus="true"
class="form-label"
/>
<button type="submit" class="btn">Get User</button>
</form>
</div>
<div class="card">
<h3 class="card-header text-uppercase">Search By Topic</h3>
<div class="card-body" id="language-buttons">
<button class="btn" data-language="javascript">JavaScript</button>
<button class="btn" data-language="html">HTML</button>
<button class="btn" data-language="css" >CSS</button>
</div>
</div>
</div>
<div class="col-12 col-md-8">
<h2 class="subtitle">Showing Repositories for: <span id="repo-search-term"></span></h2>
<div id="repos-container" class="list-group"></div>
</div>
</main>
<script src="./assets/js/homepage.js"></script>
</body>
</html>