-
Notifications
You must be signed in to change notification settings - Fork 1
/
GetOtp.html
109 lines (91 loc) · 2 KB
/
GetOtp.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
<!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>Input You Email</title>
</head>
<body>
<div class="container">
<form method="POST" action="Otp.php">
<div class="logo">
<h1>BusX Bookings</h1>
<p>Miles of smiles! Always going your way!</p>
</div>
<div class="form-group">
<label for="useremail">Enter Your Email here</label>
<input type="email" id="useremail" name="useremail" required>
</div>
<div class="form-group">
<button type="submit" class="btn-send">Send OTP</button>
</div>
</form>
</div>
</body>
<style>
body {
background-image: url('img/busx.jpeg'); /* set a background image */
background-size: cover;
background-position: center;
background-repeat: no-repeat;
background-attachment: fixed;
/* add a gradient */
}
.container {
display: flex;
justify-content: center;
align-items: center;
height: 100vh;
}
form {
background-color: #655e5e;
border-radius: 10px;
box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
padding: 30px;
}
.logo {
text-align: center;
}
.logo h1 {
font-size: 3rem;
color: #ffffff;
margin-bottom: 0;
}
.logo p {
font-size: 1rem;
color: #c6bebe;
margin-top: 0;
}
.form-group {
margin-bottom: 20px;
}
label {
display: block;
font-size: 1.2rem;
color: #000000;
margin-bottom: 10px;
}
input[type="email"] {
width: 100%;
padding: 10px;
font-size: 1.2rem;
border-radius: 5px;
border: none;
background-color: #eee;
}
button.btn-send {
background-color: #4caf50;
border: none;
border-radius: 5px;
color: #fff;
cursor: pointer;
font-size: 1.2rem;
padding: 10px 20px;
transition: background-color 0.3s ease;
}
button.btn-send:hover {
background-color: #3e8e41;
}
</style>
</html>