Sha256: 5b7f9b73f048376ddbc39a8c5e6bd4f84739cc4fc90e6698565dcacc8529d66b

Contents?: true

Size: 1005 Bytes

Versions: 1

Compression:

Stored size: 1005 Bytes

Contents

<% @title = 'Sign Up' %>
<h2><%= @title %></h2>

<%= form_for(resource, :as => resource_name, :url => registration_path(resource_name)) do |f| %>
  <%= devise_error_messages! %>

  <p><%= f.label :first_name %><br />
  <%= f.text_field :first_name  %>
  </p>
  
  <p><%= f.label :last_name %><br />
  <%= f.text_field :last_name  %></p>

  <p><%= f.label :email %><br />
  <%= f.text_field :email %></p>

<% if @user.password_required? %>
  <p><%= f.label :password %><br />
  <%= f.password_field :password %></p>

  <p><%= f.label :password_confirmation %><br />
  <%= f.password_field :password_confirmation %></p>
<% end %>

  <p><%= f.submit "Sign up" %></p>
<% end %>

<%= render :partial => "devise/shared/links" %>

<% if false %>
<% if @user.password_required? %>
  <% unless PROVIDERS.blank? %>
    <h3>Don't want to remember a new login and password? Sign up using one of your existing accounts!</h3>
    <%= render :partial => 'contour/authentications/index' %>
  <% end %>
<% end %>
<% end %>

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
contour-0.1.1 app/views/contour/registrations/new.html.erb