new contact page with mail form (sends to quake-user) and enhancements to the

Zap board redirect
This commit is contained in:
Dan Olson 2000-05-22 20:24:51 +00:00
parent bffbd92ee0
commit 06fb91a506
3 changed files with 19 additions and 11 deletions

View file

@ -1,3 +1,7 @@
<?
header("Location: http://megatf.netfrag.com/cgi-bin/forumdisplay.cgi?action=topics&forum=QuakeForge+Discussion&number=21&DaysPrune=20&LastLogin=");
exit;
?>
<HTML>
<HEAD>
<TITLE>Redirecting to Zap ...</TITLE>

View file

@ -1,3 +1,11 @@
<?
if (isset($clicked)) {
StripSlashes($message);
mail("quake-user@lists.sourceforge.net", "Comments (Sent from www.quakeforge.net)", $message, "From: $sender\r\n");
header("Location: http://www.quakeforge.net/thanks.php");
exit;
}
?>
<? // Preamble
$pageName = "Contact Us";
$focused = "none"; // Dock icon name to gets a border
@ -21,17 +29,14 @@ development, you can contact the QuakeForge developers via the
Projects network, located at irc.openprojects.net.
<H2>Contact form</H2>
Send a message to the QuakeForge team, be sure to mention your name and email to be contacted at if you expect a reply.<br>
Send a message to the QuakeForge team. Be sure to include a valid email address if you expect a reply.<br>
<?
if (isset($clicked)) {
mail("quake-devel@lists.sourceforge.net", "Comments", $message, "From: webmaster @quakeforge.net\r\n");
header("Location: http://www.quakeforge.net/thanks.php");
}
?>
<form>
<P>Message<TEXTAREA name="message" cols="40" rows="8" wrap="PHYSICAL"></TEXTAREA><P>
<INPUT TYPE="submit" NAME="clicked" VALUE="Submit">
<FORM>
<P>Your Email:<P><INPUT TYPE="text" name="sender">
<P>Message:
<P>
<TEXTAREA name="message" cols="50" rows="10" wrap="PHYSICAL"></TEXTAREA>
<P> <INPUT TYPE="submit" NAME="clicked" VALUE="Submit">
</form>
<!--NOSEARCH-->

View file

@ -3,7 +3,6 @@
$focused = "none"; // Dock icon name to gets a border
require("parts/preamble.php"); // Load most of document
?>
<H2>Thanks</H2>
<P>Your comments have been submitted to the QuakeForge team.
<P>Click to be sent back to the <a href="contact.php">Contact Us</a> page.