63 lines
1.5 KiB
PHP
63 lines
1.5 KiB
PHP
<!DOCTYPE html>
|
|
<html lang="en">
|
|
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
<title>Verification Code</title>
|
|
<style>
|
|
body {
|
|
font-family: Arial, sans-serif;
|
|
background-color: ##5eebd3;
|
|
margin: 0;
|
|
padding: 0;
|
|
}
|
|
|
|
.container {
|
|
max-width: 600px;
|
|
margin: 50px auto;
|
|
background-color: #fff;
|
|
padding: 20px;
|
|
border-radius: 5px;
|
|
box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
|
|
}
|
|
|
|
h2 {
|
|
text-align: center;
|
|
margin-bottom: 20px;
|
|
}
|
|
|
|
.verification-code {
|
|
font-size: 24px;
|
|
font-weight: bold;
|
|
text-align: center;
|
|
padding: 20px;
|
|
background-color: #3fccb4;
|
|
color: #fff;
|
|
border-radius: 5px;
|
|
}
|
|
|
|
.info-text {
|
|
text-align: center;
|
|
margin-top: 20px;
|
|
}
|
|
|
|
.footer-text {
|
|
text-align: center;
|
|
margin-top: 30px;
|
|
color: #666;
|
|
}
|
|
</style>
|
|
</head>
|
|
|
|
<body>
|
|
<div class="container">
|
|
<h2>Verification Code</h2>
|
|
<div class="verification-code">{{$token}}</div>
|
|
<p class="info-text">This code is valid for 60 minutes.</p>
|
|
<p class="footer-text">If you did not request this code, please ignore this message.</p>
|
|
</div>
|
|
</body>
|
|
|
|
</html>
|