-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathlog.html
41 lines (37 loc) · 1.9 KB
/
log.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>
<link href="https://cdn.jsdelivr.net/npm/[email protected]/dist/css/bootstrap.min.css" rel="stylesheet"
integrity="sha384-iYQeCzEYFbKjA/T2uDLTpkwGzCiq6soy8tYaI1GyVh/UjpbCx/TYkiZhlZB6+fzT" crossorigin="anonymous">
<link rel="stylesheet" href="log.css">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="output.css">
</head>
<body>
<form class="needs-validation">
<h1 class="login">Login</h1>
<div class="form-group was-validated">
<label for="email" class="inp form-label">Email</label><br>
<input class='form-control' type="email" id="email" required>
<div class="invalid-feedback">Please enter your email address</div>
</div>
<div class="form-group was-validated">
<label for="password" class="inp form-label">Password</label><br>
<input class='form-control' type="password" id="password" required>
<div class="invalid-feedback">Please enter your password</div>
</div>
<div class="form-group ">
<input type="checkbox" id="checkbox">
<label for="check" class="rem form-label">Remember me !</label>
</div>
<button class="sbtn"><a href='home.html'>Submit</a></button>
<div class="no-account">U don't have an acoount?<a href="user.html" class="signup"> Sign up</a></div>
</form>
<script src="https://cdn.jsdelivr.net/npm/@popperjs/[email protected]/dist/umd/popper.min.js"
integrity="sha384-oBqDVmMz9ATKxIep9tiCxS/Z9fNfEXiDAYTujMAeBAsjFuCZSmKbSSUnQlmh/jp3" crossorigin="anonymous">
</script>
<script src="https://cdn.jsdelivr.net/npm/[email protected]/dist/js/bootstrap.min.js"
integrity="sha384-7VPbUDkoPSGFnVtYi0QogXtr74QeVeeIs99Qfg5YCF+TidwNdjvaKZX19NZ/e6oz" crossorigin="anonymous">
</script>
</body>
</html>