mirror of
https://github.com/grafana/grafana.git
synced 2024-11-24 18:00:31 -06:00
ea27eca147
Co-authored-by: Santiago <santiagohernandez.1997@gmail.com>
37 lines
1.2 KiB
XML
37 lines
1.2 KiB
XML
<mjml>
|
|
<mj-head>
|
|
<!-- ⬇ Don't forget to specifify an email subject below! ⬇ -->
|
|
<mj-title>
|
|
{{ Subject .Subject "Reset your Grafana password - {{.Name}}" }}
|
|
</mj-title>
|
|
<mj-include path="./partials/layout/head.mjml" />
|
|
</mj-head>
|
|
<mj-body>
|
|
<mj-section>
|
|
<mj-include path="./partials/layout/header.mjml" />
|
|
</mj-section>
|
|
<mj-section background-color="#22252b" border="1px solid #2f3037">
|
|
<mj-column>
|
|
<mj-text>
|
|
<h2>Hi {{ .Name }},</h2>
|
|
</mj-text>
|
|
<mj-text>
|
|
Please click the following link to reset your password within <strong>{{ .EmailCodeValidHours }} hours</strong>.
|
|
</mj-text>
|
|
<mj-button href="{{ .AppUrl }}user/password/reset?code={{ .Code }}">
|
|
Reset Password
|
|
</mj-button>
|
|
<mj-text>
|
|
You can also copy and paste this link into your browser directly:
|
|
</mj-text>
|
|
<mj-text>
|
|
<a rel="noopener" href="{{ .AppUrl }}user/password/reset?code={{ .Code }}">{{ .AppUrl }}user/password/reset?code={{ .Code }}</a>
|
|
</mj-text>
|
|
</mj-column>
|
|
</mj-section>
|
|
<mj-section>
|
|
<mj-include path="./partials/layout/footer.mjml" />
|
|
</mj-section>
|
|
</mj-body>
|
|
</mjml>
|