Commit 23fd1f16 authored by Bryce Johnson's avatar Bryce Johnson

Use Ruby 1.9 syntax in tab_single def and usage.

parent f141cdb3
= render 'devise/shared/tab_single', { :tab_title => 'Sign in preview' }
= render 'devise/shared/tab_single', tab_title: 'Sign in preview'
.login-box
%form.show-gl-field-errors
.form-group
......
= render 'devise/shared/tab_single', { :tab_title => 'Resend confirmation instructions' }
= render 'devise/shared/tab_single', tab_title: 'Resend confirmation instructions'
.login-box
.login-body
= form_for(resource, as: resource_name, url: confirmation_path(resource_name), html: { method: :post, class: 'show-gl-field-errors' }) do |f|
......
= render 'devise/shared/tab_single', { :tab_title => 'Change your password' }
= render 'devise/shared/tab_single', tab_title:'Change your password'
.login-box
.login-body
= form_for(resource, as: resource_name, url: password_path(resource_name), html: { method: :put, class: 'show-gl-field-errors' }) do |f|
......
= render 'devise/shared/tab_single', { :tab_title => 'Reset Password' }
= render 'devise/shared/tab_single', tab_title: 'Reset Password'
.login-box
.login-body
= form_for(resource, as: resource_name, url: password_path(resource_name), html: { method: :post, class: 'show-gl-field-errors' }) do |f|
......
......@@ -3,7 +3,7 @@
= page_specific_javascript_tag('u2f.js')
%div
= render 'devise/shared/tab_single', { :tab_title => 'Two-Factor Authentication' }
= render 'devise/shared/tab_single', tab_title: 'Two-Factor Authentication'
.login-box
.login-body
- if @user.two_factor_otp_enabled?
......
// = render 'devise/shared/tab_single', :tab_title => 'Tab Title'
%ul.nav-links.nav-tabs.new-session-tabs.single-tab
%li.active
= link_to tab_title, '#', disabled: true
%a= tab_title
= render 'devise/shared/tab_single', { :tab_title => 'Resend unlock instructions' }
= render 'devise/shared/tab_single', tab_title: 'Resend unlock instructions'
.login-box
.login-body
= form_for(resource, as: resource_name, url: unlock_path(resource_name), html: { method: :post, class: 'show-gl-field-errors' }) do |f|
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment