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.
23 lines
808 B
23 lines
808 B
<% content_for :before_content do %> |
|
<%= link_to 'Back', :back, class: "govuk-back-link" %> |
|
<% end %> |
|
|
|
<%= form_for(current_user, as: :user, url: account_update_path(), html: { method: :patch }) do |f| %> |
|
<div class="govuk-grid-row"> |
|
<div class="govuk-grid-column-two-thirds"> |
|
<h1 class="govuk-heading-l">Change your personal details</h1> |
|
|
|
<div class="govuk-form-group"> |
|
<%= f.label :name, class: "govuk-label" %> |
|
<%= f.text_field :name, autocomplete: "name", class: "govuk-input" %> |
|
</div> |
|
|
|
<div class="govuk-form-group"> |
|
<%= f.label :email, class: "govuk-label" %> |
|
<%= f.email_field :email, autocomplete: "email", class: "govuk-input" %> |
|
</div> |
|
|
|
<%= f.submit "Save changes", class: "govuk-button" %> |
|
</div> |
|
</div> |
|
<% end %>
|
|
|