Skip to content

Commit

Permalink
Merge pull request #971 from NUARIG/release/1.17-testing-966
Browse files Browse the repository at this point in the history
changes to registered user devise pages formatting. #966
  • Loading branch information
mattbaumann1 authored Aug 29, 2022
2 parents 1c14077 + d5706c3 commit 2647b3d
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion app/views/devise/registrations/new.html.haml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
= '.'
= form_for(resource, as: resource_name, url: registration_path(resource_name), data: { turbo: false} ) do |f|
#fields
.cell.small-10
.cell
= f.label :first_name
= f.text_field :first_name, autofocus: true , required: true
.cell
Expand Down
2 changes: 1 addition & 1 deletion app/views/devise/sessions/_form.html.erb
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
<div class="grid-x">
<div class="cell">
<%= f.label :uid %>
<%= f.text_field :uid, autocomplete: "email", placeholder: 'Email address', class: 'small-12 medium-4' %>
<%= f.text_field :uid, autocomplete: "email", placeholder: 'Email address' %>
</div>
</div>
<div class="grid-x ">
Expand Down
2 changes: 1 addition & 1 deletion app/views/devise/sessions/new.html.erb
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
<div class="grid-container grid-container-padded">
<div class="grid-x grid-padding-x align-center">
<div class="cell align-center-middle">
<h3>Sign In with Your COMPETITIONS_CONFIG[:application_name] Account</h3>
<h3><%= "Sign In with Your #{COMPETITIONS_CONFIG[:application_name]} Account" %></h3>
<%= render "devise/shared/login_prepend_links" %>
<br />
<%= render 'devise/sessions/form' %>
Expand Down

0 comments on commit 2647b3d

Please sign in to comment.