2003-07-16 00:14:03 +00:00
|
|
|
<?php
|
2003-07-18 00:11:50 +00:00
|
|
|
require_once("project_specific/project.inc");
|
2003-07-16 00:14:03 +00:00
|
|
|
require_once("util.inc");
|
|
|
|
?>
|
2003-07-15 23:51:53 +00:00
|
|
|
<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>
|