Skip to content

Commit f3a59ce

Browse files
committed
remove fg color in controller msg / fix grammar in check email tpl
1 parent 415d9ee commit f3a59ce

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

src/Maker/MakeResetPassword.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -110,7 +110,7 @@ public function interact(InputInterface $input, ConsoleStyle $io, Command $comma
110110
);
111111

112112
$io->section('- ResetPasswordController -');
113-
$io->text('<fg=yellow>A named route is used for redirecting after a successful reset. Even a route that does not exist yet can be used here.</>');
113+
$io->text('A named route is used for redirecting after a successful reset. Even a route that does not exist yet can be used here.');
114114
$input->setArgument('controller-reset-success-redirect', $io->ask(
115115
'What route should users be redirected to after their password has been successfully reset?',
116116
'app_home',

src/Resources/skeleton/resetPassword/twig_check_email.tpl.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,6 @@
33
{% block title %}Password Reset Email Sent{% endblock %}
44

55
{% block body %}
6-
<p>An email has been sent that contains a link that you can click to reset your password. This link will expire in {{ tokenLifetime|date('g') }} hour.</p>
6+
<p>An email has been sent that contains a link that you can click to reset your password. This link will expire in {{ tokenLifetime|date('g') }} hour(s).</p>
77
<p>If you don't receive an email please check your spam folder or <a href="{{ path('app_forgot_password_request') }}">try again</a>.</p>
88
{% endblock %}

0 commit comments

Comments
 (0)