63 lines
1.7 KiB
HTML
63 lines
1.7 KiB
HTML
<!DOCTYPE html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
<title>Codevice Solutions Private Limited</title>
|
|
<style>
|
|
body {
|
|
font-family: Arial, sans-serif;
|
|
margin: 0;
|
|
padding: 0;
|
|
background-color: #f4f4f4;
|
|
}
|
|
.container {
|
|
width: 100%;
|
|
max-width: 400px;
|
|
margin: 0 auto;
|
|
background-color: #ffffff;
|
|
padding: 20px;
|
|
border-radius: 8px;
|
|
box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
|
|
}
|
|
.header {
|
|
background-color: #4CAF50;
|
|
color: white;
|
|
padding: 10px 0;
|
|
text-align: center;
|
|
border-radius: 8px 8px 0 0;
|
|
}
|
|
.content {
|
|
padding: 20px;
|
|
line-height: 1.6;
|
|
}
|
|
.footer {
|
|
text-align: center;
|
|
padding: 10px 0;
|
|
color: #777;
|
|
font-size: 12px;
|
|
}
|
|
a {
|
|
color: #4CAF50;
|
|
text-decoration: none;
|
|
}
|
|
</style>
|
|
</head>
|
|
<body>
|
|
<div class="container">
|
|
<div class="header">
|
|
<h1>Codevice Solutions Private Limited</h1>
|
|
</div>
|
|
<div class="content">
|
|
<h2>Hello, {{name}}!</h2>
|
|
<p>Use the following OTP to login. OTP is valid for 5 mins. Do not share this OTP to anyone.</p>
|
|
<h2>{{otp}}</h2>
|
|
<p>Best regards,<br>CSPL</p>
|
|
</div>
|
|
<div class="footer">
|
|
<p>© 2025 Codevice Solutions Pvt. Ltd. All rights reserved.</p>
|
|
</div>
|
|
</div>
|
|
</body>
|
|
</html>
|