Sha256: 691c44eca634a0c42335d8da2dde98ad69a76d76d2e176467e9c2ed8fdc8d540

Contents?: true

Size: 1.81 KB

Versions: 9

Compression:

Stored size: 1.81 KB

Contents

<%- @title = p_("MultiAuth", "Login") -%>
<%- @enable_side_column = false -%>

<%- additional_head { -%>
  <style type="text/css">
    #dialog
    {
        margin: 100px auto;
        padding: 15px;
        width: 400px;
        border-width: 1px;
        border-style: solid;
        border-color: #CCCCCC;
    }
    #dialog h1
    {
        margin: 0 0 0.4em 0;
        color: #666666;
        font-size: 130%;
        font-weight: bold;
    }

    table#email-login
    {
        margin: 0 auto;
        border-collapse: collapse;
        border-width: 0px;
    }

    table#email-login th,
    table#email-login td
    {
        padding: 5px;
        border-width: 0px;
    }

    table#email-login th
    {
        text-align: right;
        font-size: 95%;
        font-weight: bold;
        vertical-align: top;
        color: #666666;
    }
    table#email-login td
    {
        color: #333333;
    }

    div.fieldWithErrors label
    {
        color: #990000;
    }
    div.formError
    {
        font-size: 80%;
        color: #990000;
    }
  </style>
<%- } -%>

<div id="dialog">
  <h1><%=h p_("MultiAuth", "Login") %></h1>
  <%- form_for(:login_form, @login_form, :url => {:action => "login"}) do |f| -%>
    <table id="email-login">
      <tr>
        <th><%= f.label(:email) %></th>
        <td>
          <%= f.text_field(:email, :size => 30) %>
          <%= error_message_on(:login_form, :email) %>
        </td>
      </tr>
      <tr>
        <th><%= f.label(:password) %></th>
        <td>
          <%= f.password_field(:password, :size => 30) %>
          <%= error_message_on(:login_form, :password) %>
        </td>
      </tr>
    </table>
    <%= submit_tag(p_("MultiAuth", "Login")) %>
  <%- end -%>
</div>

<%- unless production? -%>
  <div class="debug">
    <%= error_messages_for(:login_form) %>
  </div>
<%- end -%>

Version data entries

9 entries across 9 versions & 2 rubygems

Version Path
multi_auth-0.2.0 app/views/auth/email/index.html.erb
okkez-multi_auth-0.1.0 app/views/auth/email/index.html.erb
multi_auth-0.1.0 app/views/auth/email/index.html.erb
okkez-multi_auth-0.0.7 app/views/auth/email/index.html.erb
multi_auth-0.0.7 app/views/auth/email/index.html.erb
okkez-multi_auth-0.0.6 app/views/auth/email/index.html.erb
multi_auth-0.0.6 app/views/auth/email/index.html.erb
okkez-multi_auth-0.0.5 app/views/auth/email/index.html.erb
multi_auth-0.0.5 app/views/auth/email/index.html.erb