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.
17 lines
264 B
17 lines
264 B
2 months ago
|
<?php
|
||
|
|
||
|
use Kirby\Toolkit\I18n;
|
||
|
|
||
|
/**
|
||
|
* @var \Kirby\Cms\User $user
|
||
|
* @var string $site
|
||
|
* @var string $code
|
||
|
* @var int $timeout
|
||
|
*/
|
||
|
echo I18n::template(
|
||
|
'login.email.password-reset.body',
|
||
|
null,
|
||
|
compact('user', 'site', 'code', 'timeout'),
|
||
|
$user->language()
|
||
|
);
|