-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
61 lines (54 loc) · 2.31 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 http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>GitHub Profile Search</title>
<link href="https://cdn.jsdelivr.net/npm/[email protected]/dist/css/bootstrap.min.css" rel="stylesheet" integrity="sha384-1BmE4kWBq78iYhFldvKuhfTAU6auU8tT94WrHftjDbrCEXSU1oBoqyl2QvZ6jIW3" crossorigin="anonymous">
<link rel="stylesheet" href="https://pro.fontawesome.com/releases/v5.10.0/css/all.css" integrity="sha384-AYmEC3Yw5cVb3ZcuHtOA93w35dYTsvhLPVnYs9eStHfGJvOvKxVfELGroGkvsg+p" crossorigin="anonymous">
<link rel="stylesheet" href="style.css">
</head>
<body>
<div class="container">
<h1 class="head"><b>GitHub Profile</b></h1>
<div class="row justify-content-center mt-5 searchblock">
<div class="col-12 col-md-10 col-lg-8">
<div id="message"></div>
<form id="searchForm" class="card card-sm" method="POST">
<div class="card-body row align-items-center">
<div class="col-auto">
<i class="fas fa-search h4 text-body"></i>
</div>
<div class="col">
<input class="form-control" type="search" placeholder="Enter Username" id="searchInput" autocomplete="off">
</div>
<div class="col-auto">
<button class="btn btn-lg btn-success" type="submit">Search</button>
</div>
</div>
</form>
<div class="imgp">
<img src="bg.png" alt="image">
</div>
</div>
</div>
<div class="profile">
<div class="row">
<div class="col-md-3">
<div class="profile-sidebar">
<div id="profile"></div>
</div>
</div>
<div class="col-md-9">
<div class="profile-content">
<ol class="d-flex flex-wrap mb-4" id="repos"></ol>
</div>
<footer class="text-center pt-2"><a href="javascript:window.location.reload()">Search Another Profile</a></footer>
</div>
</div>
</div>
</div>
<script src="app.js"></script>
</body>
</html>