Sha256: 423e05cec25d51a187091e81081d82556207dd88b4f253af05433d6f7bce18b7

Contents?: true

Size: 686 Bytes

Versions: 13

Compression:

Stored size: 686 Bytes

Contents

<div id="authenticate" class="sign-up">
  <h2><%= t(".title") %></h2>

  <%= form_for @user do |form| %>

    <% if @user.errors.any? %>
        <ul>
          <% @user.errors.full_messages.each do |msg| %>
            <li><%= msg %></li>
          <% end %>
        </ul>
    <% end %>

    <div class="field">
      <%= form.label :email %>
      <%= form.text_field :email, type: 'email' %>
    </div>

    <div class="field">
      <%= form.label :password %>
      <%= form.password_field :password %>
    </div>

    <div class="actions">
      <%= form.submit %>
    </div>

    <div class="links">
      <%= link_to t(".sign_in"), sign_in_path %>
    </div>

  <% end %>
</div>

Version data entries

13 entries across 13 versions & 1 rubygems

Version Path
authenticate-0.7.3 app/views/users/new.html.erb
authenticate-0.7.2 app/views/users/new.html.erb
authenticate-0.7.1 app/views/users/new.html.erb
authenticate-0.7.0 app/views/users/new.html.erb
authenticate-0.6.1 app/views/users/new.html.erb
authenticate-0.6.0 app/views/users/new.html.erb
authenticate-0.5.0 app/views/users/new.html.erb
authenticate-0.4.0 app/views/users/new.html.erb
authenticate-0.3.3 app/views/users/new.html.erb
authenticate-0.3.2 app/views/users/new.html.erb
authenticate-0.3.1 app/views/users/new.html.erb
authenticate-0.3.0 app/views/users/new.html.erb
authenticate-0.2.3 app/views/users/new.html.erb