This repository has been archived on 2020-03-24. You can view files and clone it, but cannot push or open issues or pull requests.
quay/emails/confirmemail.html

31 lines
966 B
HTML
Raw Permalink Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

{% extends "base.html" %}
{% block content %}
<h3 style="font-weight: 400">Confirm email for new user: <strong>{{ username }}</strong></h3>
<hr style="border:none; border-top: 1px solid #D9D9D9; margin: 25px 0">
<table>
<tr>
<td style="font-size: 13px;">This email address was used to register user <strong>{{ username }}.</strong> </td>
</tr>
</table>
<table style="margin-top: 25px">
<tr>
<td style="font-size: 13px;">Once you confirm this email, youll be able to access your {{ app_title }} account.</td>
</tr>
</table>
<table style="margin: 25px 0;">
<tr>
<td style="background: #40B4E5; padding: 10px; border-radius: 3px; color: #fff; font-size: 20px; font-weight: 500"><a style="text-decoration: none; color: #ffffff;" href="{{ app_link('confirm?code=' + token) }}">Confirm Email</a></td>
</tr>
</table>
<span style="font-size: 13px;">Welcome!</span><br>
<span style="font-size: 13px;">The {{ app_title }} Team</span><br>
{% endblock %}