20 lines
598 B
TypeScript
20 lines
598 B
TypeScript
import html from '../../lib/html.ts'
|
|
|
|
export default ({ link }: { link: string; site?: ANY }) => html`
|
|
<table align="center" width="600">
|
|
<tr>
|
|
<td style="text-align: center; font-family: Arial, sans-serif;" valign="top">
|
|
<h1>So you forgot your password huh?</h1>
|
|
|
|
<p>Is cool. We got you. Just follow the link below to set a new password.</p>
|
|
|
|
<p><a href="${link}">${link}</a></p>
|
|
|
|
<p>This link will only be active for 24 hours.</p>
|
|
|
|
<p><strong>This email is autogenerated and cannot be replied to.</strong></p>
|
|
</td>
|
|
</tr>
|
|
</table>
|
|
`
|