Giving schendje some auth registration descriptions so he can style them!
This commit is contained in:
parent
ad56a4826b
commit
04a7b06d61
@ -24,21 +24,29 @@ class RegistrationForm(wtforms.Form):
|
|||||||
_('Username'),
|
_('Username'),
|
||||||
[wtforms.validators.Required(),
|
[wtforms.validators.Required(),
|
||||||
wtforms.validators.Length(min=3, max=30),
|
wtforms.validators.Length(min=3, max=30),
|
||||||
wtforms.validators.Regexp(r'^\w+$')])
|
wtforms.validators.Regexp(r'^\w+$')],
|
||||||
|
description=_(
|
||||||
|
u"This is the name other users will identify you with."))
|
||||||
password = wtforms.PasswordField(
|
password = wtforms.PasswordField(
|
||||||
_('Password'),
|
_('Password'),
|
||||||
[wtforms.validators.Required(),
|
[wtforms.validators.Required(),
|
||||||
wtforms.validators.Length(min=6, max=30),
|
wtforms.validators.Length(min=6, max=30),
|
||||||
wtforms.validators.EqualTo(
|
wtforms.validators.EqualTo(
|
||||||
'confirm_password',
|
'confirm_password',
|
||||||
_('Passwords must match.'))])
|
_('Passwords must match.'))],
|
||||||
|
description=_(
|
||||||
|
u"Try to use a strong password!"))
|
||||||
confirm_password = wtforms.PasswordField(
|
confirm_password = wtforms.PasswordField(
|
||||||
_('Confirm password'),
|
_('Confirm password'),
|
||||||
[wtforms.validators.Required()])
|
[wtforms.validators.Required()],
|
||||||
|
description=_(
|
||||||
|
u"Type it again here to make sure there are no spelling mistakes."))
|
||||||
email = wtforms.TextField(
|
email = wtforms.TextField(
|
||||||
_('Email address'),
|
_('Email address'),
|
||||||
[wtforms.validators.Required(),
|
[wtforms.validators.Required(),
|
||||||
wtforms.validators.Email()])
|
wtforms.validators.Email()],
|
||||||
|
description=_(
|
||||||
|
u"Your email will never be published."))
|
||||||
|
|
||||||
|
|
||||||
class LoginForm(wtforms.Form):
|
class LoginForm(wtforms.Form):
|
||||||
|
@ -20,9 +20,6 @@
|
|||||||
{% macro render_field_div(field) %}
|
{% macro render_field_div(field) %}
|
||||||
<div class="form_field_box">
|
<div class="form_field_box">
|
||||||
<div class="form_field_label">{{ _(field.label.text) }}</div>
|
<div class="form_field_label">{{ _(field.label.text) }}</div>
|
||||||
{% if field.description -%}
|
|
||||||
<div class="form_field_description">{{ _(field.description) }}</div>
|
|
||||||
{%- endif %}
|
|
||||||
<div class="form_field_input">{{ field }}</div>
|
<div class="form_field_input">{{ field }}</div>
|
||||||
{%- if field.errors -%}
|
{%- if field.errors -%}
|
||||||
{% for error in field.errors %}
|
{% for error in field.errors %}
|
||||||
@ -31,6 +28,9 @@
|
|||||||
</div>
|
</div>
|
||||||
{% endfor %}
|
{% endfor %}
|
||||||
{%- endif %}
|
{%- endif %}
|
||||||
|
{% if field.description -%}
|
||||||
|
<div class="form_field_description">{{ _(field.description) }}</div>
|
||||||
|
{%- endif %}
|
||||||
</div>
|
</div>
|
||||||
{%- endmacro %}
|
{%- endmacro %}
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user