diff options
Diffstat (limited to 'modules/user/views/reset_password.html.php')
-rw-r--r-- | modules/user/views/reset_password.html.php | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/modules/user/views/reset_password.html.php b/modules/user/views/reset_password.html.php new file mode 100644 index 00000000..39845d61 --- /dev/null +++ b/modules/user/views/reset_password.html.php @@ -0,0 +1,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> |