% case @step %> <% when 1 %>
<%= f.label :cn, 'Username', class: 'hidden' %> <%= f.text_field :cn, autofocus: true, autocomplete: "username", class: 'text-xl' %> @ kosmos.org
<% if @validation_error.present? %>Username <%= @validation_error %>
<% end %><%= f.submit "Continue", class: 'btn btn-md btn-blue' %>
<% end %> <% when 2 %><%= f.label :email, 'Email address', class: 'hidden' %> <%= f.email_field :email, autofocus: true, autocomplete: 'email', class: 'text-xl' %>
<% if @validation_error.present? %>Email <%= @validation_error %>
<% end %><%= f.submit "Continue", class: 'btn btn-md btn-blue' %>
<% end %> <% when 3 %><%= f.label :password, 'Password', class: 'hidden' %> <%= f.password_field :password, autofocus: true, class: 'text-xl' %>
<% if @validation_error.present? %>Password <%= @validation_error %>
<% end %>By clicking the button below, you accept our future Terms of Service and Privacy Policy. Don't worry, they will be excellent!
<%= f.submit "Create account", class: 'btn-md btn-blue' %>
<% end %> <% end %>