Sha256: cd97c8a81fded56fdbbf6ad92cb01538def0b790ea2ee2c61c180c9c80206c9a

Contents?: true

Size: 731 Bytes

Versions: 1

Compression:

Stored size: 731 Bytes

Contents

<%
  page_title = _("Sign in")
  title(page_title)
%>

<%= form_for :typus_user, :url => { :action => :create, :back_to => params[:back_to] } do |form| %>

  <ul>

    <li>
      <%= form.label :email, Typus.user_class.human_attribute_name(:email) %>
      <%= form.text_field :email, :size => 20, :class => "text" %>
    </li>

    <li>
      <%= form.label :password, Typus.user_class.human_attribute_name(:password) %>
      <%= form.password_field :password, :size => 20, :class => "text" %>
    </li>

    <li>
      <%= submit_tag _("Sign in"), :class => "button" %> <%= link_to _("Recover password"), forgot_password_admin_account_index_path if Rails.env.development? || Typus.mailer_sender %>
    </li>

  </ul>

<% end %>

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
typus-1.0.0.pre app/views/admin/session/new.html.erb