2017-05-13 17:24:52 -06:00
|
|
|
<?php
|
|
|
|
|
2017-12-16 13:27:09 -07:00
|
|
|
/* This Source Code Form is subject to the terms of the Mozilla Public
|
|
|
|
* License, v. 2.0. If a copy of the MPL was not distributed with this
|
|
|
|
* file, You can obtain one at http://mozilla.org/MPL/2.0/. */
|
|
|
|
|
2017-05-13 17:24:52 -06:00
|
|
|
dieifnotloggedin();
|
|
|
|
addMultiLangStrings(["en_us" => [
|
|
|
|
"manage account security" => "Manage account security",
|
|
|
|
"manage security description" => "Review security features or change your password."
|
|
|
|
]
|
|
|
|
]);
|
|
|
|
$APPS["account_security"]["i18n"] = TRUE;
|
|
|
|
$APPS["account_security"]["title"] = "account security";
|
2017-05-13 17:36:19 -06:00
|
|
|
$APPS["account_security"]["icon"] = "lock";
|
2017-06-19 00:54:49 -06:00
|
|
|
$APPS["account_security"]["type"] = "brown";
|
2017-05-13 17:36:19 -06:00
|
|
|
$content = "<p>"
|
|
|
|
. lang("manage security description", false)
|
|
|
|
. '</p> '
|
|
|
|
. '<a href="home.php?page=security" class="btn btn-primary btn-block">'
|
|
|
|
. lang("manage account security", false)
|
|
|
|
. '</a>';
|
2017-05-13 17:24:52 -06:00
|
|
|
$APPS["account_security"]["content"] = $content;
|
|
|
|
?>
|