-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathforms.html
56 lines (53 loc) · 2.32 KB
/
forms.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
53
54
55
56
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Forms</title>
<!-- Latest compiled and minified CSS -->
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/4.5.2/css/bootstrap.min.css">
<!-- jQuery library -->
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.5.1/jquery.min.js"></script>
<!-- Popper JS -->
<script src="https://cdnjs.cloudflare.com/ajax/libs/popper.js/1.16.0/umd/popper.min.js"></script>
<!-- Latest compiled JavaScript -->
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/4.5.2/js/bootstrap.min.js"></script>
</head>
<body>
<div class="container">
<h1>Nirmit</h1>
<br>
<form method="get" action="">
<div class="form-group">
<label for="user">Username: </label>
<input id="user" class="form-control" type="text" name="">
</div>
<div class="form-group">
<label for="password">Password: </label>
<input id="password" class="form-control" type="password" name="">
</div>
<div class="form-group">
<label for="enail">Email: </label>
<input id="email" class="form-control" type="email" name="">
</div>
<input type="submit" name="" id="" class="btn btn-primary">
</form>
<br>
<form method="get" action="" class="form-inline">
<div class="form-group">
<label for="user">Username:</label>
<input id="user" class="form-control" type="text" name="">
</div>
<div class="form-group">
<label for="password">Password:</label>
<input id="password" class="form-control" type="password" name="">
</div>
<div class="form-group">
<label for="enail">Email:</label>
<input id="email" class="form-control" type="email" name="">
</div>
<input type="submit" name="" id="" class="btn btn-primary">
</form>
</div>
</body>
</html>