diff --git a/app/views/devise/registrations/new.html.erb b/app/views/devise/registrations/new.html.erb index 188b0f78..27528840 100644 --- a/app/views/devise/registrations/new.html.erb +++ b/app/views/devise/registrations/new.html.erb @@ -1,39 +1,46 @@ -

Sign up

+

Sign up for Notebook

<%= form_for(resource, as: resource_name, url: registration_path(resource_name)) do |f| %> <%= devise_error_messages! %> -
- <%= f.label :name %>
- <%= f.text_field :name %> -
+
+
-
- <%= f.label :email %> (This is the email you will log in with)
- <%= f.email_field :email, autofocus: true %> -
+
+ <%= f.label :name %>
+ <%= f.text_field :name %> +
-
- <%= f.label :password %> - <% if @minimum_password_length %> - (<%= @minimum_password_length %> characters minimum) - <% end %>
- <%= f.password_field :password, autocomplete: "off" %> -
+
+ <%= f.label :email %> (This is the email you will log in with)
+ <%= f.email_field :email, autofocus: true %> +
-
- <%= f.label :password_confirmation %>
- <%= f.password_field :password_confirmation, autocomplete: "off" %> -
+
+ <%= f.label :password %> + <% if @minimum_password_length %> + (<%= @minimum_password_length %> characters minimum) + <% end %>
+ <%= f.password_field :password, autocomplete: "off" %> +
-
- <%= f.label :promo_code %>
- <%= f.text_field :promo_code, value: 'NANOPREP - 100% off Notebook.ai for life!', disabled: "disabled" %> -
+
+ <%= f.label :password_confirmation %>
+ <%= f.password_field :password_confirmation, autocomplete: "off" %> +
-
- <%= f.submit "Sign up", class: 'btn' %> +
+ <%= f.label :promo_code %>
+ <%= f.text_field :promo_code, value: 'NANOPREP - 100% off Notebook.ai for life!', disabled: "disabled" %> +
+ +
+ <%= f.submit "Sign up", class: 'btn' %> +

+
+ <%= render "devise/shared/links" %> +

+
+
<% end %> - -<%= render "devise/shared/links" %>