Files
History_Api/assets/resources/historian_approved.html
AzenKain ae1c9473fc
All checks were successful
Build and Release / release (push) Successful in 1m33s
UPDATE: fix bug
2026-04-16 10:19:17 +07:00

72 lines
2.0 KiB
HTML

<!doctype html>
<html>
<head>
<meta charset="UTF-8" />
<title>Application Approved</title>
</head>
<body
style="
margin: 0;
padding: 0;
background: #f6f9fc;
font-family: Arial, sans-serif;
"
>
<table width="100%" cellpadding="0" cellspacing="0">
<tr>
<td align="center" style="padding: 40px 0">
<table
width="600"
cellpadding="0"
cellspacing="0"
style="background: #ffffff; border-radius: 8px; padding: 30px"
>
<tr>
<td
align="center"
style="font-size: 24px; font-weight: bold; color: #22c55e"
>
🎉 Application Approved
</td>
</tr>
<tr>
<td style="padding: 20px 0; font-size: 16px; color: #333">
Hello <b>{{NAME}}</b>,
</td>
</tr>
<tr>
<td style="font-size: 15px; color: #555; line-height: 1.6">
Your application to become a <b>Historian</b> has been
<b style="color: #22c55e">approved</b>. <br /><br />
You can now access historian features and start contributing
content.
</td>
</tr>
<tr>
<td align="center" style="padding: 30px 0">
<a
href="{{APP_URL}}"
style="
background: #22c55e;
color: #fff;
padding: 12px 20px;
border-radius: 6px;
text-decoration: none;
"
>
Go to Dashboard
</a>
</td>
</tr>
<tr>
<td style="font-size: 12px; color: #999; text-align: center">
&copy; 2026 Black Cat Studio. All rights reserved.
</td>
</tr>
</table>
</td>
</tr>
</table>
</body>
</html>