Sha256: b10d6e3ab53c33b90c02b6c6abcadcb56d41c35403d449431b320e34136a6efb

Contents?: true

Size: 1.29 KB

Versions: 12

Compression:

Stored size: 1.29 KB

Contents

<div id="login_box">
  <div id="alchemy_greeting">
    <%= image_tag("alchemy/alchemy-logo.png", :style => "width: 240px; height: 70px") %>
  </div>
  <div class="login_signup_box">
    <%= form_for @user_session, :url => {:action => 'login'}, :html => { :id => "login" } do |f| %>
      <%= f.error_messages %>
      <table>
        <tr>
          <td class="label">
            <%= f.label :login %>
          </td>
          <td class="input">
            <%= f.text_field :login, :class => 'thin_border', :autofocus => true %>
          </td>
        </tr>
        <tr>
          <td class="label">
            <%= f.label :password %>
          </td>
          <td class="input">
            <%= f.password_field :password, :class => 'thin_border' %>
          </td>
        </tr>
        <tr>
          <td colspan="2" class="submit">
            <%= hidden_field_tag 'user_screensize' %>
            <%= f.button t('login'), :class => 'button', :name => nil %>
          </td>
        </tr>
      </table>
    <% end %>
  </div>
</div>

<%- content_for :javascripts do -%>
<script type="text/javascript" charset="utf-8">
  jQuery(function($) {
    $('#alchemy_user_session_login').focus();
    $('#user_screensize').val(function() {
      return screen.width+'x'+screen.height;
    });
  });
</script>
<%- end -%>

Version data entries

12 entries across 12 versions & 1 rubygems

Version Path
alchemy_cms-2.3.2 app/views/alchemy/user_sessions/login.html.erb
alchemy_cms-2.4.1 app/views/alchemy/user_sessions/login.html.erb
alchemy_cms-2.5.0.b5 app/views/alchemy/user_sessions/login.html.erb
alchemy_cms-2.5.0.b2 app/views/alchemy/user_sessions/login.html.erb
alchemy_cms-2.4.0 app/views/alchemy/user_sessions/login.html.erb
alchemy_cms-2.4.rc4 app/views/alchemy/user_sessions/login.html.erb
alchemy_cms-2.4.rc2 app/views/alchemy/user_sessions/login.html.erb
alchemy_cms-2.4.rc1 app/views/alchemy/user_sessions/login.html.erb
alchemy_cms-2.3.1 app/views/alchemy/user_sessions/login.html.erb
alchemy_cms-2.4.beta2 app/views/alchemy/user_sessions/login.html.erb
alchemy_cms-2.3.0 app/views/alchemy/user_sessions/login.html.erb
alchemy_cms-2.3.rc5 app/views/alchemy/user_sessions/login.html.erb