initial rebuild

This commit is contained in:
allanice001
2025-09-01 13:34:13 +01:00
commit 95bd9615d1
100 changed files with 12440 additions and 0 deletions

View File

@@ -0,0 +1,45 @@
{{define "subject"}}Reset your Dragon password{{end}}
{{define "plainBody"}}
Hi {{.Name}},
We received a request to reset your password. Use the token below to continue:
Reset token:
{{.Token}}
{{if .ResetURL}}Or open this link:
{{.ResetURL}}{{end}}
If you didnt request this, you can safely ignore this email.
Sent at: {{now}}
{{end}}
{{define "htmlBody"}}
<!doctype html>
<html>
<head>
<meta name="viewport" content="width=device-width" />
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
<title>Reset your Dragon password</title>
</head>
<body>
<p>Hi {{.Name}},</p>
<p>We received a request to reset your password. Use the token below to continue:</p>
<p><strong>Reset token:</strong><br/>
<code style="font-family: monospace; font-size: 14px;">{{.Token}}</code></p>
{{if .ResetURL}}
<p>
Or click here:
<a href="{{.ResetURL}}">Reset my password</a>
</p>
{{end}}
<p>If you didnt request this, you can safely ignore this email.</p>
<p>Sent at: {{now}}</p>
</body>
</html>
{{end}}