-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
58 lines (51 loc) · 2.45 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>GitHub Lookup Service</title>
<link rel="stylesheet" href="style.css">
<link href="https://cdn.jsdelivr.net/npm/[email protected]/dist/css/bootstrap.min.css" rel="stylesheet" integrity="sha384-1BmE4kWBq78iYhFldvKuhfTAU6auU8tT94WrHftjDbrCEXSU1oBoqyl2QvZ6jIW3" crossorigin="anonymous">
</head>
<body>
<nav class="navbar navbar-dark bg-primary">
<div class="container-fluid">
<a class="navbar-brand" href="#">GitHub Finder</a>
</div>
</nav>
<br><br>
<div class="container">
<div hidden class="alert error-alert alert-danger" role="alert">
<h4 class="alert-heading">Uh oh!</h4>
<p>Looks like we encountered an error while looking for the user that you requested.</p>
<hr>
<p>Maybe the user doesn't exist?</p>
</div>
<div class="card">
<div class="card-body">
<h2 class="card-title">GitHub Lookup Service</h2>
<p class="card-text">A simple lookup service to gain information about a user on GitHub.</p>
<form class="input-form">
<div class="mb-3">
<label for="input-username" class="form-label">Username</label>
<input type="text" class="form-control input" id="input-username" aria-describedby="username-help">
<div id="username-help" class="form-text">Enter the username in this field. Warning: Usernames are case sensative.</div>
</div>
<button type="submit" class="btn btn-primary submit">Lookup User</button>
</form>
</div>
</div>
<br><br>
<div hidden class="card lookup-result">
<div class="card-body">
<div class="row">
<div class="col-md-4 avatar"></div>
<div class="col-md-8 information"></div>
</div>
</div>
</div>
</div>
<script type="module" src="javascript/app.js"></script>
</body>
</html>