Advertisement
Guest User

Untitled

a guest
Dec 18th, 2014
149
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.59 KB | None | 0 0
  1. <div class="login_form">
  2. <div class="flash">
  3. <%= render partial: 'layouts/flash_messages', locals: { flash_messages: flash } %>
  4. </div>
  5.  
  6. <%= form_for(resource, as: resource_name, url: session_path(resource_name)) do |f| %>
  7. <%= f.email_field :email, autofocus: true, placeholder: "Email" %>
  8. <%= f.password_field :password, placeholder: "Password" %>
  9. <%= f.button "Sign in" %>
  10. <% end %>
  11.  
  12. <% if gave_wrong_password? %>
  13. <a href="/def456">Reset your password here!</a>
  14. <% elsif no_account_exists? %>
  15. <a href="/abc123">Create a new account here!</a>
  16. <% end %>
  17. </div>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement