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.
26 lines
602 B
26 lines
602 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(current_user, as: :user, html: { method: :patch }) do |f| %>
|
||
3 years ago
|
<div class="govuk-grid-row">
|
||
|
<div class="govuk-grid-column-two-thirds">
|
||
|
<h1 class="govuk-heading-l">Change your personal details</h1>
|
||
|
|
||
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" },
|
||
|
autocomplete: "email"
|
||
|
%>
|
||
3 years ago
|
|
||
3 years ago
|
<%= f.govuk_submit "Save changes" %>
|
||
3 years ago
|
</div>
|
||
|
</div>
|
||
|
<% end %>
|