-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathLog-in.html
79 lines (68 loc) · 3.59 KB
/
Log-in.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
66
67
68
69
70
71
72
73
74
75
76
77
78
79
<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<!--Title-->
<title>Log-in Online Foods</title>
<!--Faviccon-->
<link rel="icon" type="image/x-icon" href="logosqure.jpeg">
<meta name="viewport" content="width=device-width, initial-scale=1">
<!--CSS-->
<link rel="stylesheet" href="style.css">
<!--Botsstrap CSS-->
<link href="https://cdn.jsdelivr.net/npm/[email protected]/dist/css/bootstrap.min.css" rel="stylesheet"
integrity="sha384-0evHe/X+R7YkIZDRvuzKMRqM+OrBnVFBL6DOitfPri4tjfHxaWutUpFmBp4vmVor" crossorigin="anonymous">
</head>
<body class="bg-danger">
<main>
<div class="modal modal-signin position-static d-block bg-transparent py-5" tabindex="-1" role="dialog"
id="modalSignin" data-aos="flip-up">
<div class="modal-dialog" role="document">
<div class="modal-content rounded-4 shadow">
<div class="modal-header p-5 pb-4 border-bottom-0">
<!-- <h5 class="modal-title">Modal title</h5> -->
<h2 class="fw-bold mb-0">Log in</h2>.
<a href="index.html"> <button type="button" class="btn-close" data-bs-dismiss="modal"
aria-label="Close"></button> </a>
</div>
<div class="modal-body p-5 pt-0">
<form class="">
<div class="form-floating mb-3">
<input type="number" class="form-control rounded-3" id="floatingInput"
placeholder="Mobile Number">
<label for="floatingInput">Mobile Number</label>
</div>
<div class="form-floating mb-3">
<input type="password" class="form-control rounded-3" id="floatingPassword"
placeholder="Password">
<label for="floatingPassword">Password</label>
</div>
<button class="w-100 mb-2 btn btn-lg rounded-3 btn-primary" type="submit">Log In</button>
<hr class="my-4">
<button class="w-100 py-2 mb-2 btn btn-outline-warning rounded-3" type="submit">
<svg class="bi me-1" width="16" height="16">
<use xlink:href="#Gmail"></use>
</svg>
Log in With Email
</button>
<button class="w-100 py-2 mb-2 btn btn-outline-secondary rounded-3" type="submit">
<svg class="bi me-1" width="16" height="16">
<use xlink:href="#google"></use>
</svg>
Log In with Google
</button>
<hr class="my-4">
<p>New to Online Foods?<a href="sign-up.html">Create account</a>
<p>
</form>
</div>
</div>
</div>
</div>
</main>
<script src="https://cdn.jsdelivr.net/npm/[email protected]/dist/js/bootstrap.bundle.min.js"
integrity="sha384-pprn3073KE6tl6bjs2QrFaJGz5/SUsLqktiwsUTF55Jfv3qYSDhgCecCxMW52nD2"
crossorigin="anonymous"></script>
</body>
</html>