Skip to content

Commit 2647b3d

Browse files
authored
Merge pull request #971 from NUARIG/release/1.17-testing-966
changes to registered user devise pages formatting. #966
2 parents 1c14077 + d5706c3 commit 2647b3d

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

app/views/devise/registrations/new.html.haml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@
1414
= '.'
1515
= form_for(resource, as: resource_name, url: registration_path(resource_name), data: { turbo: false} ) do |f|
1616
#fields
17-
.cell.small-10
17+
.cell
1818
= f.label :first_name
1919
= f.text_field :first_name, autofocus: true , required: true
2020
.cell

app/views/devise/sessions/_form.html.erb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
<div class="grid-x">
44
<div class="cell">
55
<%= f.label :uid %>
6-
<%= f.text_field :uid, autocomplete: "email", placeholder: 'Email address', class: 'small-12 medium-4' %>
6+
<%= f.text_field :uid, autocomplete: "email", placeholder: 'Email address' %>
77
</div>
88
</div>
99
<div class="grid-x ">

app/views/devise/sessions/new.html.erb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
<div class="grid-container grid-container-padded">
22
<div class="grid-x grid-padding-x align-center">
33
<div class="cell align-center-middle">
4-
<h3>Sign In with Your COMPETITIONS_CONFIG[:application_name] Account</h3>
4+
<h3><%= "Sign In with Your #{COMPETITIONS_CONFIG[:application_name]} Account" %></h3>
55
<%= render "devise/shared/login_prepend_links" %>
66
<br />
77
<%= render 'devise/sessions/form' %>

0 commit comments

Comments
 (0)