1
0
Fork 0

Fix headers

This commit is contained in:
Alex Kotov 2018-12-15 10:01:04 +05:00
parent 5f50868a39
commit 6e6763a02e
No known key found for this signature in database
GPG key ID: 4E831250F47DE154
8 changed files with 8 additions and 8 deletions

View file

@ -1,4 +1,4 @@
<div class="container text-center my-5">
<h2 class="display-1">404</h2>
<h1 class="display-1">404</h1>
<p class="lead">Not Found</p>
</div>

View file

@ -1,5 +1,5 @@
<div class="container">
<h2><%= translate '.resend_confirmation_instructions' %></h2>
<h1><%= translate '.resend_confirmation_instructions' %></h1>
<%= simple_form_for resource, as: resource_name, url: confirmation_path(resource_name) do |f| %>
<%= f.error_notification %>

View file

@ -1,5 +1,5 @@
<div class="container">
<h2><%= translate '.change_your_password' %></h2>
<h1><%= translate '.change_your_password' %></h1>
<%= simple_form_for resource,
as: resource_name,

View file

@ -1,5 +1,5 @@
<div class="container">
<h2><%= translate '.forgot_your_password' %></h2>
<h1><%= translate '.forgot_your_password' %></h1>
<%= simple_form_for resource, as: resource_name, url: password_path(resource_name) do |f| %>
<%= f.error_notification %>

View file

@ -1,5 +1,5 @@
<div class="container">
<h2><%= translate '.sign_up' %></h2>
<h1><%= translate '.sign_up' %></h1>
<%= simple_form_for resource, as: resource_name, url: registration_path(resource_name) do |f| %>
<%= f.error_notification %>

View file

@ -1,5 +1,5 @@
<div class="container">
<h2><%= translate '.sign_in' %></h2>
<h1><%= translate '.sign_in' %></h1>
<%= simple_form_for resource, as: resource_name, url: session_path(resource_name) do |f| %>
<div class="form-inputs">

View file

@ -1,5 +1,5 @@
<div class="container">
<h2><%= translate '.resend_unlock_instructions' %></h2>
<h1><%= translate '.resend_unlock_instructions' %></h1>
<%= simple_form_for resource, as: resource_name, url: unlock_path(resource_name) do |f| %>
<%= f.error_notification %>

View file

@ -10,7 +10,7 @@ end
Then 'I see the membership application tracking page' do
expect(page.current_path).to eq '/application'
expect(page).to have_css 'h2', text: 'Ваше заявление в обработке'
expect(page).to have_css 'h1', text: 'Ваше заявление в обработке'
end
When 'I send a membership application' do