Created
September 21, 2017 20:28
-
-
Save iamvery/344dd3fb7fe5e5a31b682e1c861177c8 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<h2>Log in</h2> | |
<%= form_for(resource, as: resource_name, url: session_path(resource_name)) do |f| %> | |
<div class="field"> | |
<%= f.label :email %><br /> | |
<%= f.email_field :email, autofocus: true %> | |
</div> | |
<div class="field"> | |
<%= f.label :password %><br /> | |
<%= f.password_field :password, autocomplete: "off" %> | |
</div> | |
<% if devise_mapping.rememberable? -%> | |
<div class="field"> | |
<%= f.check_box :remember_me %> | |
<%= f.label :remember_me %> | |
</div> | |
<% end -%> | |
<div class="actions"> | |
<%= f.submit "Log in" %> | |
</div> | |
<% end %> | |
<%= render "devise/shared/links" %> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment