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.
29 lines
665 B
29 lines
665 B
3 years ago
|
<% content_for :before_content do %>
|
||
3 years ago
|
<%= govuk_back_link(
|
||
|
text: 'Back',
|
||
|
href: :back,
|
||
|
) %>
|
||
3 years ago
|
<% end %>
|
||
|
|
||
3 years ago
|
<%= form_for(@resource, as: :user, html: { method: :post }) do |f| %>
|
||
3 years ago
|
<div class="govuk-grid-row">
|
||
|
<div class="govuk-grid-column-two-thirds">
|
||
3 years ago
|
<%= f.govuk_error_summary %>
|
||
|
|
||
|
<h1 class="govuk-heading-l">Invite user to submit CORE data</h1>
|
||
3 years ago
|
|
||
3 years ago
|
<%= f.govuk_text_field :name,
|
||
|
autocomplete: "name"
|
||
|
%>
|
||
3 years ago
|
|
||
3 years ago
|
<%= f.govuk_email_field :email,
|
||
|
label: { text: "Email address" },
|
||
3 years ago
|
autocomplete: "email",
|
||
|
value: @resource.email
|
||
3 years ago
|
%>
|
||
3 years ago
|
|
||
3 years ago
|
<%= f.govuk_submit "Continue" %>
|
||
3 years ago
|
</div>
|
||
|
</div>
|
||
|
<% end %>
|