mirror of https://github.com/docusealco/docuseal
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
22 lines
653 B
22 lines
653 B
<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, autocomplete: 'email' %>
|
|
</div>
|
|
<div class="field">
|
|
<%= f.label :password %><br>
|
|
<%= f.password_field :password, autocomplete: 'current-password' %>
|
|
</div>
|
|
<% if devise_mapping.rememberable? %>
|
|
<div class="field">
|
|
<%= f.check_box :remember_me, checked: true %>
|
|
<%= f.label :remember_me %>
|
|
</div>
|
|
<% end %>
|
|
<div class="actions">
|
|
<%= f.submit 'Log in' %>
|
|
</div>
|
|
<% end %>
|
|
<%= render 'devise/shared/links' %>
|