All checks were successful
Build and Release / release (push) Successful in 1m20s
72 lines
2.0 KiB
HTML
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">
|
|
© 2026 Black Cat Studio. All rights reserved.
|
|
</td>
|
|
</tr>
|
|
</table>
|
|
</td>
|
|
</tr>
|
|
</table>
|
|
</body>
|
|
</html>
|