Paul Robert Lloyd
3 years ago
29 changed files with 119 additions and 159 deletions
@ -1,25 +1,25 @@ |
|||||||
<%- if controller_name != 'sessions' %> |
<%- if controller_name != 'sessions' %> |
||||||
<p class="govuk-body">Already have an account? <%= govuk_link_to "Sign in", new_session_path(resource_name) %>.</p><br /> |
<p class="govuk-body">Already have an account? <%= govuk_link_to "Sign in", new_session_path(resource_name) %>.</p> |
||||||
<% end %> |
<% end %> |
||||||
|
|
||||||
<%- if devise_mapping.registerable? && controller_name != 'registrations' %> |
<%- if devise_mapping.registerable? && controller_name != 'registrations' %> |
||||||
<%= govuk_link_to "Sign up", new_registration_path(resource_name) %><br /> |
<%= govuk_link_to "Sign up", new_registration_path(resource_name) %><br> |
||||||
<% end %> |
<% end %> |
||||||
|
|
||||||
<%- if devise_mapping.recoverable? && controller_name != 'passwords' && controller_name != 'registrations' %> |
<%- if devise_mapping.recoverable? && controller_name != 'passwords' && controller_name != 'registrations' %> |
||||||
<p class="govuk-body"> You can <%= govuk_link_to "reset your password", new_password_path(resource_name) %> if you’ve forgotten it.<p><br /> |
<p class="govuk-body">You can <%= govuk_link_to "reset your password", new_password_path(resource_name) %> if you’ve forgotten it.</p> |
||||||
<% end %> |
<% end %> |
||||||
|
|
||||||
<%- if devise_mapping.confirmable? && controller_name != 'confirmations' %> |
<%- if devise_mapping.confirmable? && controller_name != 'confirmations' %> |
||||||
<%= govuk_link_to "Didn’t receive confirmation instructions?", new_confirmation_path(resource_name) %><br /> |
<%= govuk_link_to "Didn’t receive confirmation instructions?", new_confirmation_path(resource_name) %><br> |
||||||
<% end %> |
<% end %> |
||||||
|
|
||||||
<%- if devise_mapping.lockable? && resource_class.unlock_strategy_enabled?(:email) && controller_name != 'unlocks' %> |
<%- if devise_mapping.lockable? && resource_class.unlock_strategy_enabled?(:email) && controller_name != 'unlocks' %> |
||||||
<%= govuk_link_to "Didn’t receive unlock instructions?", new_unlock_path(resource_name) %><br /> |
<%= govuk_link_to "Didn’t receive unlock instructions?", new_unlock_path(resource_name) %><br> |
||||||
<% end %> |
<% end %> |
||||||
|
|
||||||
<%- if devise_mapping.omniauthable? %> |
<%- if devise_mapping.omniauthable? %> |
||||||
<%- resource_class.omniauth_providers.each do |provider| %> |
<%- resource_class.omniauth_providers.each do |provider| %> |
||||||
<%= govuk_link_to "Sign in with #{OmniAuth::Utils.camelize(provider)}", omniauth_authorize_path(resource_name, provider), method: :post %><br /> |
<%= govuk_link_to "Sign in with #{OmniAuth::Utils.camelize(provider)}", omniauth_authorize_path(resource_name, provider), method: :post %><br> |
||||||
<% end %> |
<% end %> |
||||||
<% end %> |
<% end %> |
||||||
|
@ -1,9 +1,8 @@ |
|||||||
<%= render partial: "form/guidance/#{question.guidance_partial}" if question.guidance_partial %> |
<%= render partial: "form/guidance/#{question.guidance_partial}" if question.guidance_partial %> |
||||||
|
|
||||||
<%= f.govuk_date_field question.id.to_sym, |
<%= f.govuk_date_field question.id.to_sym, |
||||||
caption: caption(caption_text, page_header, conditional), |
caption: caption(caption_text, page_header, conditional), |
||||||
legend: legend(question, page_header, conditional), |
legend: legend(question, page_header, conditional), |
||||||
hint: { text: question.hint_text&.html_safe }, |
hint: { text: question.hint_text&.html_safe }, |
||||||
width: 20, |
width: 20, |
||||||
**stimulus_html_attributes(question) |
**stimulus_html_attributes(question) %> |
||||||
%> |
|
||||||
|
@ -1,12 +1,11 @@ |
|||||||
<%= render partial: "form/guidance/#{question.guidance_partial}" if question.guidance_partial %> |
<%= render partial: "form/guidance/#{question.guidance_partial}" if question.guidance_partial %> |
||||||
|
|
||||||
<%= f.govuk_number_field question.id.to_sym, |
<%= f.govuk_number_field question.id.to_sym, |
||||||
caption: caption(caption_text, page_header, conditional), |
caption: caption(caption_text, page_header, conditional), |
||||||
label: legend(question, page_header, conditional), |
label: legend(question, page_header, conditional), |
||||||
hint: { text: question.hint_text&.html_safe }, |
hint: { text: question.hint_text&.html_safe }, |
||||||
min: question.min, max: question.max, step: question.step, |
min: question.min, max: question.max, step: question.step, |
||||||
width: question.width, :readonly => question.read_only?, |
width: question.width, :readonly => question.read_only?, |
||||||
prefix_text: question.prefix.to_s, |
prefix_text: question.prefix.to_s, |
||||||
suffix_text: question.suffix.is_a?(String) ? question.suffix : nil, |
suffix_text: question.suffix.is_a?(String) ? question.suffix : nil, |
||||||
**stimulus_html_attributes(question) |
**stimulus_html_attributes(question) %> |
||||||
%> |
|
||||||
|
@ -1,37 +1,36 @@ |
|||||||
<%= render partial: "form/guidance/#{question.guidance_partial}" if question.guidance_partial %> |
<%= render partial: "form/guidance/#{question.guidance_partial}" if question.guidance_partial %> |
||||||
|
|
||||||
<%= f.govuk_radio_buttons_fieldset question.id.to_sym, |
<%= f.govuk_radio_buttons_fieldset question.id.to_sym, |
||||||
caption: caption(caption_text, page_header, conditional), |
caption: caption(caption_text, page_header, conditional), |
||||||
legend: legend(question, page_header, conditional), |
legend: legend(question, page_header, conditional), |
||||||
hint: { text: question.hint_text&.html_safe } do %> |
hint: { text: question.hint_text&.html_safe } do %> |
||||||
|
|
||||||
<% question.displayed_answer_options.map do |key, options| %> |
<% question.displayed_answer_options.map do |key, options| %> |
||||||
<% if key.starts_with?("divider") %> |
<% if key.starts_with?("divider") %> |
||||||
<%= f.govuk_radio_divider %> |
<%= f.govuk_radio_divider %> |
||||||
|
<% else %> |
||||||
|
<% conditional_question = find_conditional_question(@page, question, key) %> |
||||||
|
<% if conditional_question.nil? %> |
||||||
|
<%= f.govuk_radio_button question.id, |
||||||
|
key, |
||||||
|
label: { text: options['value'] }, |
||||||
|
hint: { text: options['hint'] }, |
||||||
|
**stimulus_html_attributes(question) %> |
||||||
<% else %> |
<% else %> |
||||||
<% conditional_question = find_conditional_question(@page, question, key) %> |
<%= f.govuk_radio_button question.id, |
||||||
<% if conditional_question.nil? %> |
key, |
||||||
<%= f.govuk_radio_button question.id, |
label: { text: options['value'] }, |
||||||
key, |
hint: { text: options['hint'] }, |
||||||
label: { text: options['value'] }, |
**stimulus_html_attributes(question) do %> |
||||||
hint: { text: options['hint'] }, |
<%= render partial: "#{conditional_question.type}_question", locals: { |
||||||
**stimulus_html_attributes(question) |
question: conditional_question, |
||||||
%> |
caption_text: caption_text, |
||||||
<% else %> |
page_header: page_header, |
||||||
<%= f.govuk_radio_button question.id, |
f: f, |
||||||
key, |
conditional: true |
||||||
label: { text: options['value'] }, |
} %> |
||||||
hint: { text: options['hint'] }, |
|
||||||
**stimulus_html_attributes(question) do %> |
|
||||||
<%= render partial: "#{conditional_question.type}_question", locals: { |
|
||||||
question: conditional_question, |
|
||||||
caption_text: caption_text, |
|
||||||
page_header: page_header, |
|
||||||
f: f, |
|
||||||
conditional: true |
|
||||||
} %> |
|
||||||
<% end %> |
|
||||||
<% end %> |
<% end %> |
||||||
<% end %> |
<% end %> |
||||||
<% end %> |
<% end %> |
||||||
|
<% end %> |
||||||
<% end %> |
<% end %> |
||||||
|
@ -1,9 +1,8 @@ |
|||||||
<%= render partial: "form/guidance/#{question.guidance_partial}" if question.guidance_partial %> |
<%= render partial: "form/guidance/#{question.guidance_partial}" if question.guidance_partial %> |
||||||
|
|
||||||
<%= f.govuk_text_field question.id.to_sym, |
<%= f.govuk_text_field question.id.to_sym, |
||||||
caption: caption(caption_text, page_header, conditional), |
caption: caption(caption_text, page_header, conditional), |
||||||
label: legend(question, page_header, conditional), |
label: legend(question, page_header, conditional), |
||||||
hint: { text: question.hint_text&.html_safe }, |
hint: { text: question.hint_text&.html_safe }, |
||||||
width: question.width ? question.width : nil, |
width: question.width ? question.width : nil, |
||||||
**stimulus_html_attributes(question) |
**stimulus_html_attributes(question) %> |
||||||
%> |
|
||||||
|
@ -1,9 +1,8 @@ |
|||||||
<%= render partial: "form/guidance/#{question.guidance_partial}" if question.guidance_partial %> |
<%= render partial: "form/guidance/#{question.guidance_partial}" if question.guidance_partial %> |
||||||
|
|
||||||
<%= f.govuk_text_area question.id.to_sym, |
<%= f.govuk_text_area question.id.to_sym, |
||||||
caption: caption(caption_text, page_header, conditional), |
caption: caption(caption_text, page_header, conditional), |
||||||
label: legend(question, page_header, conditional), |
label: legend(question, page_header, conditional), |
||||||
hint: { text: question.hint_text&.html_safe }, |
hint: { text: question.hint_text&.html_safe }, |
||||||
width: question.width ? question.width : nil, |
width: question.width ? question.width : nil, |
||||||
**stimulus_html_attributes(question) |
**stimulus_html_attributes(question) %> |
||||||
%> |
|
||||||
|
Loading…
Reference in new issue