Holger Frey
7 years ago
7 changed files with 261 additions and 7 deletions
@ -0,0 +1,20 @@ |
|||||||
|
{% extends "ordr2:templates/layout.jinja2" %} |
||||||
|
|
||||||
|
{% block title %} Ordr | Account Settings {% endblock title %} |
||||||
|
|
||||||
|
{% block content %} |
||||||
|
|
||||||
|
<h1>Verify Your Email Address</h1> |
||||||
|
|
||||||
|
{{ macros.show_flash_messages() }} |
||||||
|
|
||||||
|
<p> |
||||||
|
An email has been sent to your new email address. |
||||||
|
</p> |
||||||
|
<p> |
||||||
|
Please follow the link in the email to verify your address. |
||||||
|
</p> |
||||||
|
|
||||||
|
{{ macros.white_space_column('col-6') }} |
||||||
|
|
||||||
|
{% endblock content %} |
@ -0,0 +1,13 @@ |
|||||||
|
{% extends "ordr2:templates/layout.jinja2" %} |
||||||
|
|
||||||
|
{% block title %} Ordr | Account Settings {% endblock title %} |
||||||
|
|
||||||
|
{% block content %} |
||||||
|
|
||||||
|
<h1>Account Settings</h1> |
||||||
|
{{ form.render()|safe }} |
||||||
|
|
||||||
|
{{ macros.white_space_column('col-6') }} |
||||||
|
|
||||||
|
|
||||||
|
{% endblock content %} |
@ -0,0 +1,25 @@ |
|||||||
|
<!DOCTYPE html> |
||||||
|
<html> |
||||||
|
<head> |
||||||
|
<meta http-equiv="Content-Type" content="text/html; charset=utf-8"> |
||||||
|
<title>[ordr] verify your email address</title> |
||||||
|
<link href='http://fonts.googleapis.com/css?family=Anton&subset=latin,latin-ext' rel='stylesheet' type='text/css'> |
||||||
|
</head> |
||||||
|
<body> |
||||||
|
<h1>Hi there!</h1> |
||||||
|
<p> |
||||||
|
Please verify your email address for the account "{{ user.username }}" by following this link |
||||||
|
<a href="{{ request.resource_url(context, data.token.hash) }}">{{ request.resource_url(context, data.token.hash) }}</a> |
||||||
|
</p> |
||||||
|
<p> The link will expire on {{ data.token.expires.strftime('%d.%m.%y at %H:%M') }}. |
||||||
|
<p class="signature"> |
||||||
|
Regards, |
||||||
|
<br/> |
||||||
|
<span class="brand">ordr</span> |
||||||
|
</p> |
||||||
|
<p class="footprint"> |
||||||
|
<small>Please don't respont to this email! This is an automatically generated notification by the system.</small> |
||||||
|
<a href="http://distractedbysquirrels.com/" target="_blank" title="This software was originally written by Sebastian Sebald." class="icon-dbs"></a> |
||||||
|
</p> |
||||||
|
</body> |
||||||
|
</html> |
Reference in new issue