]> dev.renevier.net Git - syj.git/blob - application/views/scripts/pending/password_validate.phtml
version 0.1
[syj.git] / application / views / scripts / pending / password_validate.phtml
1 <?php
2     $this->redirectLinks = false;
3
4     $title = "";
5     foreach ($this->headTitle() as $item) {
6         $title .= $item;
7     }
8
9     echo '<h1>' . $title . '</h1>' . PHP_EOL;
10
11     print '<p class="center success">';
12
13     $href = $this->addParamToUrl('login', 'redirect', 'account');
14
15     print $this->translate('Your new password is now <strong>%s</strong>. You can %s with this new password. Don\'t forget to change it again to a personal password as soon as possible.',
16             $this->escape($this->newpwd),
17             $this->anchor($href, $this->translate('log in'))
18             );
19     print '</p>';
20 ?>