-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathrepoSearch.html
52 lines (44 loc) · 1.97 KB
/
repoSearch.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
<!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>Test GITHUB API - Repo Search</title>
<link href="https://cdn.jsdelivr.net/npm/[email protected]/dist/css/bootstrap.min.css" rel="stylesheet" integrity="sha384-KK94CHFLLe+nY2dmCWGMq91rCGa5gtU4mk92HdvYe+M/SXH301p5ILy+dN9+nJOZ" crossorigin="anonymous">
<link rel="stylesheet" href="style.css">
</head>
<body>
<br><br><br>
<div class="container">
<a href="index.html"><button class="btn btn-primary">Back</button></a><br>
<h1>GITHUB API Test Version 1.0.0 - Repository Search</h1><br>
<div class="repo-search">
<h2>Github Repository Search</h2>
<form id="myform" autocomplete="off" name="reposearch">
<div class="form-group"><br>
<h4>Github Username : </h4>
<input type="text" name="repos_user" class="form-control">
</div>
<div class="form-group">
<h4>Repository Name : </h4>
<input type="text" name="repos_name" class="form-control">
</div>
<div class="form-group">
<!-- <button class="btn btn-danger">Search User</button> -->
<br>
<input type="submit" value="Search Repository" class="btn btn-danger">
</div>
</form>
<div id="repo-search">
</div>
</div>
<footer>
<hr>
<span class="footer-text">Developed By <a href="https://github.com/JehanKandy" target="_blank">JehanKandy</a> using <a href="https://api.github.com/" target="_blank">GITHUB API</a> May 2023</span>
</footer>
</div>
<script src="script.js"></script>
<!-- <script src="reposearch.js"></script> -->
</body>
</html>