Add registration message

This commit is contained in:
Matt Wright
2012-08-16 18:53:27 -04:00
parent d87676027e
commit dec858dae9
5 changed files with 9 additions and 5 deletions
@@ -1,5 +1,5 @@
<p>Welcome {{ user.email }}!</p>
<p>You can confirm your account email through the link below:</p>
<p>You can confirm your email through the link below:</p>
<p><a href="{{ confirmation_link }}">Confirm my account</a></p>
@@ -1,5 +1,5 @@
Welcome {{ user.email }}!
You can confirm your account email through the link below:
You can confirm your email through the link below:
{{ confirmation_link }}
@@ -1,6 +1,6 @@
{% from "security/_macros.html" import render_field_with_errors, render_field %}
{% include "security/_messages.html" %}
<h1>Change password</h1>
<h1>Reset password</h1>
<form action="{{ url_for_security('reset_password', token=password_reset_token) }}" method="POST" name="reset_password_form">
{{ reset_password_form.hidden_tag() }}
{{ render_field_with_errors(reset_password_form.password) }}