From a3da09b50f7fce10235d83302b363814cd2e09b7 Mon Sep 17 00:00:00 2001 From: Maurice Williams Date: Thu, 24 Jul 2014 22:49:57 -0400 Subject: [PATCH] Removing "full name" auto-popualtion during signup closes #3392 - removing data-binding attribute for "name" input box on signup screen - removing data-binding attribute for "password" input box on signup screen - making "email" the first input box and "name" the 2nd - removing "autofocus" attribute for "email" input box on signup screen --- core/client/templates/signup.hbs | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) diff --git a/core/client/templates/signup.hbs b/core/client/templates/signup.hbs index eee4079eb4..90012ed22f 100644 --- a/core/client/templates/signup.hbs +++ b/core/client/templates/signup.hbs @@ -5,19 +5,19 @@

Welcome to Ghost

Create your account to start publishing

-
- - {{input type="text" name="name" autofocus="autofocus" autocorrect="off" value=name }} -

The name that you will sign your posts with

-
- {{input type="email" name="email" autofocus="autofocus" autocorrect="off" value=email }} + {{input type="email" name="email" autocorrect="off" value=email }}

Used for important notifications

+
+ + {{input type="text" name="name" autofocus="autofocus" autocorrect="off" value="" }} +

The name that you will sign your posts with

+
- {{input type="password" name="password" autofocus="autofocus" autocorrect="off" value=password }} + {{input type="password" name="password" autofocus="autofocus" autocorrect="off" value="" }}

Must be at least 8 characters

- \ No newline at end of file +