Skip to content
Open
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion app/assets/stylesheets/_variables.scss
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ $autolab-light-red: #ffbec0;
$autolab-subtle-gray: #eee;
$autolab-highlight-gray: #ccc;
$autolab-black-text: #212121;
$autolab-blue-text: #0869af;
$autolab-blue-text: #0056b3;
$autolab-green: #3a862d;
$autolab-light-green: #ebffd2;
$autolab-white: #fff;
Expand Down
12 changes: 9 additions & 3 deletions app/views/devise/sessions/new.html.erb
Original file line number Diff line number Diff line change
@@ -1,13 +1,19 @@
<div class="sign-in-panel home">
<div class="sign-in-panel home" lang="en">
<br>

<%= form_for(resource, as: resource_name, url: session_path(resource_name)) do |f| %>

<img src="/images/autolab.svg" alt="" class="valign login-logo">
<h5>Login to Autolab</h5>

<div><%= f.email_field :email, autofocus: true, placeholder: "Email Address" %></div>
<div><%= f.password_field :password, placeholder: "Password" %></div>
<div>
<%= f.label :email, "Email Address" %>
<%= f.email_field :email, autofocus: true, placeholder: "Email Address" %>
</div>
<div>
<%= f.label :password, "Password" %>
<%= f.password_field :password, placeholder: "Password" %>
</div>

<% if devise_mapping.rememberable? -%>
<label>
Expand Down
Loading