-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathgitDemo.html
More file actions
24 lines (23 loc) · 916 Bytes
/
gitDemo.html
File metadata and controls
24 lines (23 loc) · 916 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
<!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>Document</title>
<link href="https://stackpath.bootstrapcdn.com/bootstrap/4.5.2/css/bootstrap.min.css" rel="stylesheet">
<script src="git.js"></script>
</head>
<body>
<div class="container col-lg-4">
<div class="display-3 text-center">Git Repo</div>
<div class="form-group">
<div class="display-4 text-center">Enter Username</div>
<input class="form-control db" id="uname" type="text" placeholder="Enter the username" width="25vw">
</div>
<input class="submit form-control btn-dark" type="submit" value="GetRepo" onclick=getRepo()>
<div id="temp">
</div>
</div>
</body>
</html>