-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
68 lines (67 loc) · 2.27 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
<!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 User Information</title>
<link rel="stylesheet" href="style.css" />
<link
href="https://cdn.jsdelivr.net/npm/bootstrap@5.3.0-alpha3/dist/css/bootstrap.min.css"
rel="stylesheet"
integrity="sha384-KK94CHFLLe+nY2dmCWGMq91rCGa5gtU4mk92HdvYe+M/SXH301p5ILy+dN9+nJOZ"
crossorigin="anonymous"
/>
<link
rel="stylesheet"
href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.0/css/all.min.css"
integrity="sha512-iecdLmaskl7CVkqkXNQ/ZH/XLlvWZOJyj7Yy7tcenmpD1ypASozpmT/E0iPtmFIB46ZmdtAc9eNBvH0H/ZpiBw=="
crossorigin="anonymous"
referrerpolicy="no-referrer"
/>
</head>
<body>
<div class="container mt-3">
<div class="row">
<div class="card col-9">
<div class="card-body">
<h5 class="card-title">Github Search User</h5>
<form id="github-form" class="input-group mb-3">
<input
type="text"
name="githubname"
id="githubname"
class="form-control"
placeholder="Github Username"
/>
<button
class="btn btn-outline-secondary"
type="submit"
id="button-addon2"
>
Search
</button>
</form>
</div>
<div id="profile" class="m-3"></div>
<!-- <h3 class="page-heading m-3">En son repolar</h3> -->
<div id="repos" class="m-3"></div>
</div>
<div class="results col-3">
<h3 class="page-heading mb-3">Last Searchs</h3>
<div id="lastSearch" style="margin-bottom: 100px">
<ul class="list-group" id="last-users"></ul>
<hr />
<button id="clear-last-users" class="btn btn-dark">
Clear All Searched Users
</button>
</div>
</div>
</div>
</div>
<script src="github.js"></script>
<script src="storage.js"></script>
<script src="ui.js"></script>
<script src="script.js"></script>
</body>
</html>