Files
Claper/lib/claper_web/templates/layout/email.html.heex
2025-07-03 14:55:23 +02:00

80 lines
2.2 KiB
Plaintext

<!doctype html>
<html>
<head>
<meta content="text/html; charset=utf-8" http-equiv="Content-Type" />
<title>Reset Password Email Template</title>
<meta name="description" content="Reset Password Email Template." />
<style type="text/css">
a:hover {text-decoration: underline !important;}
</style>
</head>
<body
marginheight="0"
topmargin="0"
marginwidth="0"
style="margin: 0px; background-color: #f2f3f8;"
leftmargin="0"
>
<!--100% body table-->
<table
cellspacing="0"
border="0"
cellpadding="0"
width="100%"
bgcolor="#f2f3f8"
style="@import url(https://fonts.googleapis.com/css?family=Rubik:300,400,500,700|Open+Sans:300,400,600,700); font-family: 'Open Sans', sans-serif;"
>
<tr>
<td>
<table
style="background-color: #f2f3f8; max-width:670px; margin:0 auto;"
width="100%"
border="0"
align="center"
cellpadding="0"
cellspacing="0"
>
<tr>
<td style="height:80px;">&nbsp;</td>
</tr>
<tr>
<td style="text-align:center;">
<a
href={Application.get_env(:claper, ClaperWeb.Endpoint)[:base_url]}
title="logo"
target="_blank"
>
<img
width="60"
src={"#{Application.get_env(:claper, ClaperWeb.Endpoint)[:base_url]}/images/logo.png"}
title="logo"
alt="logo"
/>
</a>
</td>
</tr>
<tr>
<td style="height:20px;">&nbsp;</td>
</tr>
{@inner_content}
<tr>
<td style="text-align:center;">
<p style="font-size:14px; color:rgba(69, 80, 86, 0.7411764705882353); line-height:18px; margin:0 0 0;">
&copy; <strong>claper.co</strong>
</p>
</td>
</tr>
<tr>
<td style="height:80px;">&nbsp;</td>
</tr>
</table>
</td>
</tr>
</table>
<!--/100% body table-->
</body>
</html>