Sha256: 1cd4f1c8762abed0dc6b96516019076b584aa99d9d64c7549e2e2a96e2c87679
Contents?: true
Size: 1.39 KB
Versions: 16
Compression:
Stored size: 1.39 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, :url => {:action => :create}, :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' %> <p class="foot_note"> <%= link_to _t('Forgot your password?'), new_password_path %> </p> </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($) { $('#user_login').focus(); $('#user_screensize').val(function() { return screen.width+'x'+screen.height; }); }); </script> <%- end -%>
Version data entries
16 entries across 16 versions & 2 rubygems