UPDATE: Auth module, User module
Some checks failed
Build and Release / release (push) Failing after 1m25s
Some checks failed
Build and Release / release (push) Failing after 1m25s
This commit is contained in:
33
assets/resources/email_verify.html
Normal file
33
assets/resources/email_verify.html
Normal file
@@ -0,0 +1,33 @@
|
||||
<!DOCTYPE html>
|
||||
<html>
|
||||
<head>
|
||||
<meta charset="UTF-8">
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||||
<title>Email Verification</title>
|
||||
<style>
|
||||
body { margin: 0; padding: 0; font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif; background-color: #f4f7f6; color: #333333; }
|
||||
.container { max-width: 600px; margin: 40px auto; background-color: #ffffff; border-radius: 8px; box-shadow: 0 4px 10px rgba(0,0,0,0.05); overflow: hidden; }
|
||||
.header { background-color: #4F46E5; padding: 30px; text-align: center; color: #ffffff; }
|
||||
.header h1 { margin: 0; font-size: 24px; font-weight: 600; }
|
||||
.content { padding: 40px 30px; text-align: center; }
|
||||
.content p { font-size: 16px; line-height: 1.6; color: #555555; margin-bottom: 25px; }
|
||||
.otp-box { display: inline-block; background-color: #F3F4F6; padding: 15px 30px; border-radius: 6px; letter-spacing: 5px; font-size: 32px; font-weight: bold; color: #111827; margin-bottom: 25px;}
|
||||
.footer { background-color: #f9fafb; padding: 20px; text-align: center; font-size: 13px; color: #9ca3af; border-top: 1px solid #eeeeee; }
|
||||
</style>
|
||||
</head>
|
||||
<body>
|
||||
<div class="container">
|
||||
<div class="header">
|
||||
<h1>Welcome!</h1>
|
||||
</div>
|
||||
<div class="content">
|
||||
<p>Thank you for registering. Please use the OTP below to verify your email address. This code will expire in a few minutes.</p>
|
||||
<div class="otp-box">{{OTP_CODE}}</div>
|
||||
<p>If you did not make this request, please safely ignore this email.</p>
|
||||
</div>
|
||||
<div class="footer">
|
||||
© 2026 Black Cat Studio. All rights reserved.
|
||||
</div>
|
||||
</div>
|
||||
</body>
|
||||
</html>
|
||||
Reference in New Issue
Block a user