forked from surajondev/JavaScript
-
Notifications
You must be signed in to change notification settings - Fork 0
/
github.html
46 lines (27 loc) · 1.58 KB
/
github.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
<html>
<head></head>
<!-- Required meta tags -->
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<!-- Bootstrap CSS -->
<link href="https://cdn.jsdelivr.net/npm/[email protected]/dist/css/bootstrap.min.css" rel="stylesheet" integrity="sha384-1BmE4kWBq78iYhFldvKuhfTAU6auU8tT94WrHftjDbrCEXSU1oBoqyl2QvZ6jIW3" crossorigin="anonymous">
<title>JQuery Assignment</title>
<style type="text/css">
</style>
<body>
<div class="mb-3">
<h1> Enter Owner and Repositery name </h1>
<label for="owner" class="form-label">Owner Name</label>
<input type="email" class="form-control" id="owner" placeholder="JatinSadhwani02">
</div>
<div class="mb-3">
<label for="exampleInputPassword1" class="form-label">Repository Name</label>
<input type="text" class="form-control" id="repo" placeholder="BlogApp-using-Django">
</div>
<div class="d-grid gap-2 col-6 mx-auto" style="padding: 20px;">
<button class="btn btn-primary" type="button" id="submit">Submit</button>
</div>
<script src="https://code.jquery.com/jquery-3.6.0.min.js" integrity="sha256-/xUj+3OJU5yExlq6GSYGSHk7tPXikynS7ogEvDej/m4=" crossorigin="anonymous"></script>
<script src="script.js"> </script>
<script src="https://cdn.jsdelivr.net/npm/[email protected]/dist/js/bootstrap.bundle.min.js" integrity="sha384-ka7Sk0Gln4gmtz2MlQnikT1wXgYsOg+OMhuP+IlRH9sENBO0LRn5q+8nbTov4+1p" crossorigin="anonymous"></script>
</body>