Update faq.php to use css.

This commit is contained in:
Retro_Guy 2024-11-02 07:40:13 -07:00
parent f3eabd499d
commit 0ed2c0c2c2
1 changed files with 43 additions and 41 deletions

View File

@ -3,10 +3,10 @@
/*
* CHANGE THE LINE BELOW TO 'installed = true once you have edited this filter
*/
$installed = true;
$installed = false;
// Set this to your administrative email address
$admin = "admin@novabbs.com";
$admin = "admin@example.com";
include "config.inc.php";
include "../spoolnews/newsportal.php";
@ -14,11 +14,14 @@ $title .= " - Privacy and FAQ";
include "head.inc";
if(!$installed) {
echo '<font size ="5em"><center><br />';
echo 'ADMIN: Please edit the file "faq.php" in your SITE/common directory to match your needs,<br />';
echo 'and change "$installed = false" to "$installed = true" ';
echo '<center>';
echo '<h4 style="faq_titles">Admin Notice:</h4>';
echo '<p class="faq_text">';
echo 'ADMIN: Please edit the file "faq.php" in your SITE/common directory to match your needs.<br ><br>';
echo 'Change "$installed = false" to "$installed = true"<br>';
echo 'to remove this notice and display your page.';
echo '</center></font></body></html';
echo '</p>';
echo '</body></html';
exit();
}
@ -28,49 +31,48 @@ include "head.inc";
echo '<center>';
// Privacy
echo '<h4>Privacy:</h4>';
echo '<font size="4em">';
echo 'This server does not place your ip address in the headers of messages.<br />';
echo 'There is a header specific to each user that is obfuscated to allow others to block, but is not personally identifiable.<br />';
echo 'Passwords are never stored on the server but email address is stored.<br />';
echo 'We do not share any user data with anyone outside of our servers.<br />';
echo '<br />';
echo '</font>';
echo '<h4 style="faq_titles">Privacy:</h4>';
echo '<p class="faq_text">';
echo 'This server does not place your ip address in the headers of messages.<br>';
echo 'There is a header specific to each user that is obfuscated to allow others to block, but is not personally identifiable.<br >';
echo 'Passwords are never stored on the server but email address is stored.<br >';
echo 'We do not share any user data with anyone outside of our servers.<br >';
echo '<br >';
echo '</p>';
// Abuse
echo '<h4>Abuse:</h4>';
echo '<font size="4em">';
echo 'Spamming, trolling, forging etc. will all be addressed once the admin becomes aware this is taking place.<br />';
echo 'You may notify ' . $admin . ' with issues.<br />';
echo 'Forging complaints must be sent by the one who is being forged.<br />';
echo '<br />';
echo '<h4 style="faq_titles">Abuse:</h4>';
echo '<p class="faq_text">';
echo 'Spamming, trolling, forging etc. will all be addressed once the admin becomes aware this is taking place.<br >';
echo 'You may notify ' . $admin . ' with issues.<br >';
echo 'Forging complaints must be sent by the one who is being forged.<br >';
echo '<br >';
echo 'Articles or users will not be removed for political/social/etc. opinions you (or I) dont agree with.<br />';
echo 'Please use the block filter for articles or users you do not wish to see.<br />';
echo 'Articles considered illegal in the jurisdiction of the admin (U.S.) may be removed for legal reasons.<br />';
echo '<br />';
echo '</font>';
echo 'Articles or users will not be removed for political/social/etc. opinions you (or I) dont agree with.<br >';
echo 'Please use the block filter for articles or users you do not wish to see.<br >';
echo 'Articles considered illegal in the jurisdiction of the admin (U.S.) may be removed for legal reasons.<br >';
echo '<br >';
echo '</p>';
// Posting Restrictions
echo '<h4>Posting Restrictions:</h4>';
echo '<font size="4em">';
echo 'Posting requires an account. No account is required for reading articles.<br />';
echo 'Limits are placed on number of groups in crossposts, and all articles are filtered through a spam filter.<br />';
echo '<h4 style="faq_titles">Posting Restrictions:</h4>';
echo '<p class="faq_text">';
echo 'Posting requires an account. No account is required for reading articles.<br >';
echo 'Limits are placed on number of groups in crossposts, and all articles are filtered through a spam filter.<br >';
echo 'Limits on the number of posts per hour may be imposed. If you reach this limit you should be notified how long to wait.<br />';
echo 'Other restrictions may also be imposed including common crossposting abuse.<br />';
echo '<br />';
echo '</font>';
echo 'Limits on the number of posts per hour may be imposed. If you reach this limit you should be notified how long to wait.<br >';
echo 'Other restrictions may also be imposed including common crossposting abuse.<br >';
echo '<br >';
echo '</p>';
// Filtering
echo '<h4>Filtering:</h4>';
echo '<font size="4em">';
echo 'Incoming messages are filtered by the backend NNTP server.<br />';
echo 'This is meant to keep groups useable, and is NOT meant to censor speech.<br />';
echo '</br />';
echo '</font>';
echo '<hr></br />';
echo '<h4 style="faq_titles">Filtering:</h4>';
echo '<p class="faq_text">';
echo 'Incoming messages are filtered by the backend NNTP server.<br >';
echo 'This is meant to keep groups useable, and is NOT meant to censor speech.<br >';
echo '</br >';
echo '</p>';
echo '<hr></br >';
include "../spoolnews/tail.inc";
echo '</body></html>';