mirror of https://github.com/BOINC/boinc.git
Add a new notification area
svn path=/trunk/boinc/; revision=11422
This commit is contained in:
parent
aa2bda094f
commit
f7767052b3
|
@ -13,6 +13,25 @@ db_init();
|
||||||
$title = "Project Management";
|
$title = "Project Management";
|
||||||
admin_page_head($title);
|
admin_page_head($title);
|
||||||
|
|
||||||
|
// Notification area
|
||||||
|
echo "<ul>\n";
|
||||||
|
|
||||||
|
if (!file_exists(".htaccess")) {
|
||||||
|
echo "<li><span style='color: #ff0000'>The Project Management directory is not
|
||||||
|
protected from public access by a .htaccess file.</span></li>\n";
|
||||||
|
}
|
||||||
|
|
||||||
|
if (parse_bool($config, "disable_account_creation")) {
|
||||||
|
echo "<li><span style='color: #ff9900'>Account creation is disabled.</span></li>\n";
|
||||||
|
}
|
||||||
|
|
||||||
|
if (defined('INVITE_CODES')) {
|
||||||
|
echo "<li><span style='color: #ff9900'>Account creation is restricted by the use of
|
||||||
|
invitation codes.</span></li>\n";
|
||||||
|
}
|
||||||
|
|
||||||
|
echo "</ul>\n";
|
||||||
|
|
||||||
echo "
|
echo "
|
||||||
<p><table><tr valign=\"top\"><td width=\"30%\">
|
<p><table><tr valign=\"top\"><td width=\"30%\">
|
||||||
Browse database:
|
Browse database:
|
||||||
|
|
Loading…
Reference in New Issue