mirror of
https://github.com/fspc/bike-database.git
synced 2025-04-04 10:03:22 -04:00
12 lines
560 B
Plaintext
12 lines
560 B
Plaintext
<div class="container">
|
|
<h2>Sign in</h2>
|
|
<p>Note: The password for the DATABASE has been changed to be in keeping with the new password standards. This notice will be removed at some point in the future. </p>
|
|
<%= form_for(resource, as: resource_name, url: session_path(resource_name)) do |f| %>
|
|
<div><%= f.label :email %><br />
|
|
<%= f.email_field :email, autofocus: true %></div>
|
|
<div><%= f.label :password %><br />
|
|
<%= f.password_field :password, autocomplete: "off" %></div>
|
|
<div><%= f.submit "Sign in" %></div>
|
|
<% end %>
|
|
</div>
|