-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
111 lines (89 loc) · 4.88 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
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Login</title>
<link rel="stylesheet" href="css/bootstrap.min.css">
<link rel="stylesheet" href="css/index.css">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/5.15.3/css/all.min.css">
</head>
<body>
<!-- Section: Design Block -->
<section class="background-radial-gradient overflow-hidden">
<style>
.bg-glass {
margin-left: 10rem;
border: inset;
background: none;
}
</style>
<div class="container px-4 py-5 px-md-5 text-center text-lg-start my-5">
<div class="row gx-lg-5 align-items-center mb-5">
<div class="col-lg-6 mb-5 mb-lg-0" style="z-index: 10" id="loginheading">
<h1 class="my-5 display-5 fw-bold ls-tight" style="color: #fff">
Welcome To <br />
<span style="color: #371b28">FlowerGifts <img id="rose" src="images/nav-log.jpg" /></span>
</h1>
</div>
<div class="col-lg-6 mb-5 mb-lg-0 position-relative" id="loginbox">
<!-- signup -->
<div class="card bg-glass">
<span style="color: #a340ff">FlowerGifts <img id="rose" src="images/nav-log.jpg" width="5px"
height="10px" /></span>
<div class="card-body px-4 py-5 px-md-5">
<form>
<!-- 2 column grid layout with text inputs for the first and last names -->
<!-- Email input -->
<div class="form-outline mb-4">
<input type="email" id="form3Example3" class="text-box" placeholder=" " />
<label class="form-label" for="form3Example3">Email address</label>
</div>
<!-- Password input -->
<div class="form-outline mb-4">
<input type="password" id="form3Example4" class="text-box" placeholder=" " />
<label class="form-label" for="form3Example4">Password</label>
</div>
<!-- Checkbox -->
<div class="form-check d-flex justify-content-center mb-4" id="remember_me">
<input class="form-check-input me-2" type="checkbox" value="" id="form2Example33"
checked />
<label class="form-check-label subscribe" for="form2Example33">
Remember me
</label>
<a href="#!">Forgot password?</a>
</div>
<!-- Submit button -->
<a href="html/home.html"><button type="button" class="btn btn-light" id="signup">Log In</button></a>
<div class="dont">
<p class="mb-0">Don't have an account? <a href="html/signup.html">Sign Up</a>
</p>
</div> <br>
<!-- Register buttons -->
<div class="text-center">
<p style="color: #fff;">or sign up with:</p>
<button type="button" class="btn btn-link btn-floating mx-1">
<i class="fab fa-facebook-f"></i>
</button>
<button type="button" class="btn btn-link btn-floating mx-1">
<i class="fab fa-google"></i>
</button>
<button type="button" class="btn btn-link btn-floating mx-1">
<i class="fab fa-twitter"></i>
</button>
<button type="button" class="btn btn-link btn-floating mx-1">
<i class="fab fa-github"></i>
</button>
</div>
</form>
</div>
</div>
<!-- signup end -->
</div>
</div>
</div>
</section>
<!-- Section: Design Block -->
</body>
</html>