-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathNewtask.html
41 lines (41 loc) · 1.51 KB
/
Newtask.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
<!DOCTYPE html>
<html lang="en">
<head>
<title>Bootstrap Example</title>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.4.1/css/bootstrap.min.css">
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.5.1/jquery.min.js"></script>
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/3.4.1/js/bootstrap.min.js"></script>
</head>
<body>
<div class="col-lg-12 col-sm-12 col-12 text-center jumbotron">
<h1><b>NOSTALGIFY</b></h1>
<p><h2>LOGIN</h2></p><br>
</div>
<div class="container">
<div class="row">
<div class="col-lg-12 col-sm-12">
<form style="width:80%">
<div class="form-group">
<label for="uname">Username:</label>
<input type="uname" class="form-control" placeholder="Username" required="required" name="uname">
</div>
<div class="form-group">
<label for="email">Password</label>
<input class="form-control" placeholder="Password" name="pass">
</div>
<div class="form-group">
<button class="btn btn-primary btn-block">Log in</button>
</div>
<div class="clearfix">
<label class="pull-left checkbox-inline"><input type="checkbox"> Remember me</label>
<a class="pull-right">Forgot Password?</a>
</div>
</form>
</div>
<p class="text-center">Create an Account</p>
</div>
</div>
</body>
</html>