From 49ec327923e6c0548dd2637f0a6fbb3431b1737a Mon Sep 17 00:00:00 2001 From: Sami Mokaddem Date: Thu, 21 Oct 2021 09:16:51 +0200 Subject: [PATCH] chg: [ui:register] Added sign-in link --- templates/Users/register.php | 3 +++ 1 file changed, 3 insertions(+) diff --git a/templates/Users/register.php b/templates/Users/register.php index 66cf287..b013218 100644 --- a/templates/Users/register.php +++ b/templates/Users/register.php @@ -37,6 +37,9 @@ use Cake\Core\Configure; echo $this->Form->control('password', ['type' => 'password', 'label' => __('Password'), 'class' => 'form-control mb-4']); echo $this->Form->control(__('Sign up'), ['type' => 'submit', 'class' => 'btn btn-primary']); + echo '
'; + echo sprintf('%s %s', __('Have an account?'), __('Sign in')); + echo '
'; echo $this->Form->end(); ?> \ No newline at end of file