blob: 39845d6110f5fae935357bd09e3ceee218540f4a (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
<?php defined("SYSPATH") or die("No direct script access.") ?>
<html>
<head>
<title><?= $title ?> </title>
</head>
<body>
<h2><?= t("Password Reset Request") ?> </h2>
<p>
<?= sprintf(t("A request to reset your password (user: %s) at %s."), $name, url::base(false, "http")) ?>
<?= sprintf(t("To confirm this request please click on the link below")) ?><br />
<a href="<?= $url ?>"><?= t("Reset Password") ?></a>
</p>
</body>
</html>
|