mirror of https://github.com/grafana/grafana.git
54 lines
2.1 KiB
XML
54 lines
2.1 KiB
XML
<mjml>
|
|
<!-- global variables -->
|
|
<mj-include path="./partials/_globals.mjml" />
|
|
<!-- css styling -->
|
|
<mj-include path="./partials/layout/theme.css" type="css" css-inline="inline" />
|
|
<mj-head>
|
|
<!-- ⬇ Don't forget to specify an email subject below! ⬇ -->
|
|
<mj-title> {{ Subject .Subject .TemplateData "Welcome to Grafana, please complete your sign up!" }} </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-wrapper css-class="background" padding="0">
|
|
<mj-section padding="0">
|
|
<mj-column>
|
|
<mj-text>
|
|
<h2>Please complete your signup</h2>
|
|
</mj-text>
|
|
<mj-text>
|
|
Copy and paste the confirmation code into the sign up form to verify your email address. This confirmation
|
|
code will expire in {{ .Expire }} minutes.
|
|
</mj-text>
|
|
</mj-column>
|
|
</mj-section>
|
|
<mj-section padding="10px 25px">
|
|
<mj-column css-class="well">
|
|
<mj-text font-size="22px" font-weight="bold" align="center"> {{ .ConfirmationCode }} </mj-text>
|
|
</mj-column>
|
|
</mj-section>
|
|
<mj-section padding="0">
|
|
<mj-column>
|
|
<mj-text> Alternatively, you can use the button below to complete your sign up. </mj-text>
|
|
<mj-button href="{{ .AppUrl }}login/?code={{ .Code }}&confirmationCode={{ .ConfirmationCode }}&signup=true">
|
|
Complete Sign Up
|
|
</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 }}login?code={{ .Code }}&confirmationCode={{ .ConfirmationCode }}&signup=true"
|
|
>{{ .AppUrl }}login?code={{ .Code }}&confirmationCode={{ .ConfirmationCode }}&signup=true</a
|
|
>
|
|
</mj-text>
|
|
</mj-column>
|
|
</mj-section>
|
|
</mj-wrapper>
|
|
<mj-section>
|
|
<mj-include path="./partials/layout/footer.mjml" />
|
|
</mj-section>
|
|
</mj-body>
|
|
</mjml>
|