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.
11 lines
560 B
11 lines
560 B
<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>
|
|
|