-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathOTPworkerRequest.php
More file actions
93 lines (83 loc) · 2.2 KB
/
OTPworkerRequest.php
File metadata and controls
93 lines (83 loc) · 2.2 KB
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Send OTP</title>
<style>
body {
font-family: Arial, sans-serif;
background-color: #009a60;
margin: 0;
padding: 0;
}
.container {
max-width: 400px;
margin: 50px auto;
background: #f8f9fa;
box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
border-radius: 8px;
padding: 40px;
}
h1 {
text-align: center;
margin-bottom: 20px;
color: #343a40;
}
form input {
width: 100%;
padding: 10px;
margin-bottom: 15px;
border: 1px solid #ced4da;
border-radius: 4px;
font-size: 14px;
}
form input[type="submit"] {
background-color: #00B074;
color: white;
cursor: pointer;
border: none;
font-weight: bold;
}
form input[type="submit"]:hover {
background-color: #009a60;
}
.container div {
text-align: center;
}
.container p {
font-size: 14px;
margin-top: 10px;
}
.container a {
color: #00B074;
text-decoration: none;
}
.container a:hover {
text-decoration: underline;
}
.backButton{
background-color: #00B074;
color: white;
cursor: pointer;
border: none;
font-weight: bold;
width: 100%;
padding: 10px;
margin-bottom: 15px;
border: 1px solid #ced4da;
border-radius: 4px;
font-size: 14px;
}
</style>
</head>
<body>
<div class="container">
<h1>Send OTP</h1>
<form method="post" action="OTPworkerSend.php">
<input type="email" name="email" id="email" placeholder="Email" required>
<input type="submit" class="btn" value="Send" name="sendOTP">
</form>
</div>
</body>
</html>