mirror of
https://git.code.sf.net/p/quake/website
synced 2024-11-27 22:42:57 +00:00
new contact page with mail form (sends to quake-user) and enhancements to the
Zap board redirect
This commit is contained in:
parent
bffbd92ee0
commit
06fb91a506
3 changed files with 19 additions and 11 deletions
|
@ -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>
|
<HTML>
|
||||||
<HEAD>
|
<HEAD>
|
||||||
<TITLE>Redirecting to Zap ...</TITLE>
|
<TITLE>Redirecting to Zap ...</TITLE>
|
||||||
|
|
25
contact.php
25
contact.php
|
@ -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
|
<? // Preamble
|
||||||
$pageName = "Contact Us";
|
$pageName = "Contact Us";
|
||||||
$focused = "none"; // Dock icon name to gets a border
|
$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.
|
Projects network, located at irc.openprojects.net.
|
||||||
|
|
||||||
<H2>Contact form</H2>
|
<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>
|
||||||
|
|
||||||
<?
|
<FORM>
|
||||||
if (isset($clicked)) {
|
<P>Your Email:<P><INPUT TYPE="text" name="sender">
|
||||||
mail("quake-devel@lists.sourceforge.net", "Comments", $message, "From: webmaster @quakeforge.net\r\n");
|
<P>Message:
|
||||||
header("Location: http://www.quakeforge.net/thanks.php");
|
<P>
|
||||||
}
|
<TEXTAREA name="message" cols="50" rows="10" wrap="PHYSICAL"></TEXTAREA>
|
||||||
?>
|
<P> <INPUT TYPE="submit" NAME="clicked" VALUE="Submit">
|
||||||
<form>
|
|
||||||
<P>Message<TEXTAREA name="message" cols="40" rows="8" wrap="PHYSICAL"></TEXTAREA><P>
|
|
||||||
<INPUT TYPE="submit" NAME="clicked" VALUE="Submit">
|
|
||||||
</form>
|
</form>
|
||||||
|
|
||||||
<!--NOSEARCH-->
|
<!--NOSEARCH-->
|
||||||
|
|
|
@ -3,7 +3,6 @@
|
||||||
$focused = "none"; // Dock icon name to gets a border
|
$focused = "none"; // Dock icon name to gets a border
|
||||||
require("parts/preamble.php"); // Load most of document
|
require("parts/preamble.php"); // Load most of document
|
||||||
?>
|
?>
|
||||||
<H2>Thanks</H2>
|
|
||||||
<P>Your comments have been submitted to the QuakeForge team.
|
<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.
|
<P>Click to be sent back to the <a href="contact.php">Contact Us</a> page.
|
||||||
|
|
Loading…
Reference in a new issue