-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
46 lines (46 loc) · 1.43 KB
/
Copy pathindex.html
File metadata and controls
46 lines (46 loc) · 1.43 KB
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
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>Github User Lookup</title>
<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>
</head>
<body>
<div class='container-fluid'>
<div class='row'>
<center>
<h1>Github User Lookup</h1>
<form id="search-form">
<div class="form-group">
<label for="search">Enter a Github username to search:</label>
<input id="search">
<button class="btn-success" type="submit">Submit</button>
</div>
<div class="container-fluid hider">
<div class="row placeholder1">
<b>Username:</b>
<div class="dataholder1">
</div>
</div>
<div class="row placeholder2">
<b>Public Repositories:</b>
<div class="dataholder2">
</div>
</div>
<div class="row placeholder3">
<b>Repositories URL:</b>
<div class="dataholder3">
</div>
</div>
<div class="row placeholder4">
<b>Github URL:</b>
<div class="dataholder4">
</div>
</div>
</div>
</div>
</div>
</html>