UPDATE: Historian module
All checks were successful
Build and Release / release (push) Successful in 1m20s
All checks were successful
Build and Release / release (push) Successful in 1m20s
This commit is contained in:
71
assets/resources/historian_approved.html
Normal file
71
assets/resources/historian_approved.html
Normal file
@@ -0,0 +1,71 @@
|
||||
<!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>
|
||||
50
assets/resources/historian_rejected.html
Normal file
50
assets/resources/historian_rejected.html
Normal file
@@ -0,0 +1,50 @@
|
||||
<!DOCTYPE html>
|
||||
<html>
|
||||
<head>
|
||||
<meta charset="UTF-8" />
|
||||
<title>Application Rejected</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:#ef4444;">
|
||||
❌ Application Rejected
|
||||
</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;">
|
||||
Unfortunately, your application to become a <b>Historian</b> has been
|
||||
<b style="color:#ef4444;">rejected</b>.
|
||||
<br/><br/>
|
||||
<b>Reason:</b><br/>
|
||||
{{reason}}
|
||||
<br/><br/>
|
||||
You can update your information and reapply anytime.
|
||||
</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td align="center" style="padding:30px 0;">
|
||||
<a href="{{app_url}}" style="background:#3b82f6;color:#fff;padding:12px 20px;border-radius:6px;text-decoration:none;">
|
||||
Reapply
|
||||
</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>
|
||||
Reference in New Issue
Block a user