-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
65 lines (46 loc) · 2.1 KB
/
index.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
57
58
59
60
61
62
63
64
65
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>My Log In Form</title>
<link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/bootstrap/4.5.2/css/bootstrap.min.css"
integrity="sha384-JcKb8q3iqJ61gNV9KGb8thSsNjpSL0n8PARn9HuZOnIxN0hoP+VmmDGMN5t9UJ0Z" crossorigin="anonymous">
<script src="https://code.jquery.com/jquery-3.5.1.slim.min.js"
integrity="sha256-4+XzXVhsDmqanXGHaHvgh1gMQKX40OUvDEBTu8JcmNs=" crossorigin="anonymous"></script>
<script src="jquery.js"></script>
</head>
<body>
<div class="container">
<div class="row mt-5">
<div class="col-lg-3"></div>
<div class="col-lg-6 p-0">
<form class="form-group p-0 border">
<p class="bg-light border-bottom px-3 py-2"><b>Log In</b></p>
<div class="form-group row px-3">
<label class="col-sm-2 col-form-label">Email</label>
<div class="col-sm-10">
<input type="text" class="form-control">
</div>
</div>
<div class="form-group row px-3">
<label class="col-sm-2 col-form-label">Password</label>
<div class="col-sm-10">
<input type="password" class="form-control" id="inputPassword">
<input type="checkbox" class="my-4">
<label for="">Remember Me</label>
<br>
<button class="btn btn-primary">Log In</button>
<label for="" class="text-primary ml-4">Forgot Your Password?</label>
</div>
</div>
</form>
<a href="signup.html">
<p class="text-danger text-center">Sign Up Here</p>
</a>
</div>
<div class="col-lg-3"></div>
</div>
</div>
</body>
</html>