26 lines
647 B
Plaintext
26 lines
647 B
Plaintext
<!DOCTYPE html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
<title>Enter OTP</title>
|
|
<link rel="stylesheet" href="otp.css">
|
|
</head>
|
|
<body>
|
|
<h2>Enter OTP</h2>
|
|
|
|
<% if (error) { %>
|
|
<p class="error"><%= error %></p>
|
|
<% } %>
|
|
|
|
<form action="/verify-otp" method="post">
|
|
<input type="hidden" name="username" value="<%= username %>">
|
|
<label for="otp">OTP:</label>
|
|
<input type="text" id="otp" name="otp" required>
|
|
<br>
|
|
|
|
<button type="submit">Submit OTP</button>
|
|
</form>
|
|
</body>
|
|
</html>
|