diff --git a/app/assets/stylesheets/components/textbox.scss b/app/assets/stylesheets/components/textbox.scss index 27ee0d1f8..9975df803 100644 --- a/app/assets/stylesheets/components/textbox.scss +++ b/app/assets/stylesheets/components/textbox.scss @@ -54,3 +54,8 @@ .textbox-right-aligned { text-align: right; } + +.extra-tracking .form-control { + padding-left: 5px; + letter-spacing: 0.04em; +} diff --git a/app/templates/views/register-from-invite.html b/app/templates/views/register-from-invite.html index fa9acbd99..29f9572b8 100644 --- a/app/templates/views/register-from-invite.html +++ b/app/templates/views/register-from-invite.html @@ -14,7 +14,9 @@ Create an account

Your account will be created with this email: {{email_address}}

{{ textbox(form.name, width='3-4') }} - {{ textbox(form.mobile_number, width='3-4', hint='We’ll send you a security code by text message') }} +
+ {{ textbox(form.mobile_number, width='3-4', hint='We’ll send you a security code by text message') }} +
{{ textbox(form.password, hint="At least 8 characters", width='3-4') }} {{ page_footer("Continue") }} {{form.service}} diff --git a/app/templates/views/register.html b/app/templates/views/register.html index 540307e74..bc7130c38 100644 --- a/app/templates/views/register.html +++ b/app/templates/views/register.html @@ -14,7 +14,9 @@ Create an account {{ textbox(form.name, width='3-4') }} {{ textbox(form.email_address, hint="Must be from a government organisation", width='3-4', safe_error_message=True) }} - {{ textbox(form.mobile_number, width='3-4', hint='We’ll send you a security code by text message') }} +
+ {{ textbox(form.mobile_number, width='3-4', hint='We’ll send you a security code by text message') }} +
{{ textbox(form.password, hint="At least 8 characters", width='3-4') }} {{ page_footer("Continue") }} diff --git a/app/templates/views/send-test.html b/app/templates/views/send-test.html index 7550eaa4f..a36c2d3f4 100644 --- a/app/templates/views/send-test.html +++ b/app/templates/views/send-test.html @@ -16,7 +16,7 @@
-
+
{{ textbox( form.placeholder_value, hint='Optional' if optional_placeholder else None, diff --git a/app/templates/views/two-factor.html b/app/templates/views/two-factor.html index 73c7d9111..a58df2f32 100644 --- a/app/templates/views/two-factor.html +++ b/app/templates/views/two-factor.html @@ -15,7 +15,7 @@

We’ve sent you a text message with a security code.

- + {{ textbox( form.sms_code, width='5em',