forked from learn-co-curriculum/phase-1-github-search-app
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
37 lines (30 loc) · 887 Bytes
/
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
<html>
<head>
<meta charset='UTF-8'/>
<meta name='viewport' content='width=device-width, initial-scale=1.0'/>
<meta http-equiv='X-UA-Compatible' content='ie=edge'/>
<title>Document</title>
<script src='js/index.js'></script>
<link rel='stylesheet' href='index.css'/>
</head>
<body>
<div id='main'>
<h2>GitHub Search</h2>
<form action="/action_page.php" id='github-form'>
<label for="search">Search for:</label>
<select name="searchFor" id="searchFor">
<option value="Users">User(s)</option>
<option value="Repos">Repositorie(s)</option>
</select>
<input id='search' type='text' name='search' placeholder="Username...">
<input type='submit' name='submit'/>
</form>
<div id='github-container'>
<ul id='user-list'>
</ul>
<ul id='repos-list'>
</ul>
</div>
</div>
</body>
</html>