Provides explanations of "recommend" and "reject" buttons.

svn path=/trunk/boinc/; revision=1693
This commit is contained in:
Dan Werthimer 2003-07-15 23:51:53 +00:00
parent 780b8dad9f
commit c8192b7c29
1 changed files with 25 additions and 0 deletions

25
html/user/explanation.php Normal file
View File

@ -0,0 +1,25 @@
<?php require_once("project.inc") ?>
<html>
<head>
<title>User Profile Voting Information</title>
</head>
<table border=0 cellpadding=0>
<?php
if ($_GET['val'] == "recommend") {
row1("Recommending User Profiles");
rowify("<br>");
rowify("If you really like a profile, hit the \"recommend\" button. The " . PROJECT . " team reviews recommended profiles for various purposes.");
} else {
row1("Voting to Reject a Profile");
rowify("<br>");
rowify("If you find a profile offensive, please click \"vote to reject\". This flags the profile for review by " . PROJECT . " staff.");
}
end_table();
?>
</body>
</html>