diff --git a/app/views/devise/passwords/new.html.erb b/app/views/devise/passwords/new.html.erb
index 9b486b81b..332b2fe89 100644
--- a/app/views/devise/passwords/new.html.erb
+++ b/app/views/devise/passwords/new.html.erb
@@ -1,15 +1,23 @@
-
+
+
Reset password
+ <%= render "devise/shared/error_messages", resource: resource %>
-
- <%= f.label :email %>
- <%= f.email_field :email, autofocus: true, autocomplete: "email" %>
-
+
Enter the email address you used to create your account.
+
We’ll email you a link to reset your password. This link will expire in 3 hours.
+
+
+ <%= f.label :email, "Email address", class: "govuk-label" %>
+ <%= f.email_field :email, autofocus: true, autocomplete: "email", class: "govuk-input" %>
+
-
- <%= f.submit "Send me reset password instructions" %>
+ <%= f.submit "Send email", class: "govuk-button" %>
+
<% end %>
diff --git a/app/views/devise/shared/_links.html.erb b/app/views/devise/shared/_links.html.erb
index f05ceea8c..e4019a560 100644
--- a/app/views/devise/shared/_links.html.erb
+++ b/app/views/devise/shared/_links.html.erb
@@ -1,5 +1,5 @@
<%- if controller_name != 'sessions' %>
- <%= link_to "Log in", new_session_path(resource_name) %>
+
Already have an account?<%= link_to "Sign in", new_session_path(resource_name) %>.
<% end %>
<%- if devise_mapping.registerable? && controller_name != 'registrations' %>