-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
executable file
·64 lines (50 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
52
53
54
55
56
57
58
59
60
61
62
63
64
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<link href="https://fonts.googleapis.com/css?family=Gloria+Hallelujah" rel="stylesheet">
<link href="https://fonts.googleapis.com/css?family=Gloria+Hallelujah" rel="stylesheet">
<title>Githubprofile Lookup</title>
</head>
<body>
<div class="jumbotron">
<h1>Githubprofile Lookup</h1>
<small>Spy on me NOT!</small>
</div>
<div class="container">
<form action="" id="githubname" class="form-inline">
<div class="form-group">
<label for="Github username">Github Username:</label>
<input type="text" id="github-username" class="form-control" placeholder="username" required="required">
</div>
<button class="btn btn-primary" type="submit" id="searchUser">Search</button>
</form>
</div>
<div class="container">
<div id="error">
<div class="img-avatar">
</div>
</div>
</div>
<div class="container">
<div class="row">
<div class="col-sm-5">
<div class="username">
</div>
<div id="avatar">
<!-- <p>Prof pic goes here</p> -->
</div>
</div>
<div class="col-sm-7">
<div id="repo">
<!-- <p>public repos go here</p> -->
</div>
</div>
</div>
</div>
<link rel="stylesheet" href="build/css/vendor.css">
<link rel="stylesheet" href="build/css/styles.css">
<script type="text/javascript"src="build/js/vendor.min.js"></script>
<script type="text/javascript" src="build/js/app.js"></script>
</body>
</html>