You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
28 lines
703 B
28 lines
703 B
<% content_for :before_content do %> |
|
<%= govuk_back_link( |
|
text: 'Back', |
|
href: :back, |
|
) %> |
|
<% end %> |
|
|
|
<%= form_for(resource, as: resource_name, url: user_registration_path(), html: { method: :patch }) do |f| %> |
|
<div class="govuk-grid-row"> |
|
<div class="govuk-grid-column-two-thirds"> |
|
<%= f.govuk_error_summary %> |
|
|
|
<h1 class="govuk-heading-l">Invite user to submit CORE data</h1> |
|
|
|
<%= f.govuk_text_field :name, |
|
autocomplete: "name" |
|
%> |
|
|
|
<%= f.govuk_email_field :email, |
|
label: { text: "Email address" }, |
|
autocomplete: "email", |
|
value: resource.email |
|
%> |
|
|
|
<%= f.govuk_submit "Continue" %> |
|
</div> |
|
</div> |
|
<% end %>
|
|
|