-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathemailotp.html
More file actions
25 lines (25 loc) · 787 Bytes
/
emailotp.html
File metadata and controls
25 lines (25 loc) · 787 Bytes
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
<!DOCTYPE html>
<html>
<head>
<link rel="icon" type="image/x-icon" href="images/logo2.png">
<title>Verification Email OTP</title>
<link rel="stylesheet" href="emailotp.css">
<script src="https://smtpjs.com/v3/smtp.js">
</script>
</head>
<body>
<!-- <form action="verifyemail.jsp" method="post"> -->
<div class="form">
<h1>System Station</h1><hr>
<h1>Enter the registered Email ID:</h1>
<input type="email" id="email" name="email" placeholder="Enter Email...">
<div class="otpverify">
<input type="text" id="otp_inp" placeholder="Enter the OTP sent to your Email...">
<button class="btn" id="otp-btn">Verify</button>
</div>
<button class="btn" onclick="sendOTP()">Send OTP</button>
</div>
<script src="emailotp.js"></script>
<!-- </form> -->
</body>
</html>