Sha256: 541bf3a4fdd815645dacd92364b09f66f7e76b3f55f93e0c262ad6842d9da958
Contents?: true
Size: 801 Bytes
Versions: 2
Compression:
Stored size: 801 Bytes
Contents
<%% title t('log_in_title') %> <p><%%= t('sign_up_message', :link => link_to(t("sign_up_link"), signup_path)) %></p> <%- if options[:authlogic] -%> <%% semantic_form_for @<%= session_singular_name %> do |f| %> <%= f.error_message_on :base %> <%% f.inputs do %> <%%= f.input :username %> <%%= f.input :password %> <%% end %> <%% f.buttons do %> <%%= f.commit_button t('log_in_button') %> <%% end %> <%% end %> <%- else -%> <%% form_tag <%= session_plural_name %>_path do %> <p> <%%= label_tag :login, t('login_label') %><br /> <%%= text_field_tag :login, params[:login] %> </p> <p> <%%= label_tag :password, t('password_label') %><br /> <%%= password_field_tag :password %> </p> <p><%%= submit_tag t('log_in_button') %></p> <%% end %> <%- end -%>
Version data entries
2 entries across 2 versions & 1 rubygems