mirror of
https://git.code.sf.net/p/quake/website
synced 2024-11-10 15:22:13 +00:00
47 lines
1.4 KiB
PHP
47 lines
1.4 KiB
PHP
<?
|
|
if (isset($clicked)) {
|
|
StripSlashes($message);
|
|
mail("quake-user@lists.sourceforge.net", "Comments (Sent from www.quakeforge.net)", StripSlashes($message), "From: $sender\r\nReply-To: $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
|
|
require("parts/preamble.php"); // Load most of document
|
|
?>
|
|
<!--SEARCHME-->
|
|
<H4>Electronic Mail</H4>
|
|
|
|
<P>Please direct support questions to the
|
|
<A href="mailto:quake-user@lists.sourceforge.net">QuakeForge Users</A> mailing list.
|
|
|
|
<P>If you have ideas about new features for QuakeForge or wish to help in
|
|
development, you can contact the QuakeForge developers via the
|
|
<A href="mailto:quake-devel@lists.sourceforge.net">QuakeForge Development</A>
|
|
mailing list.
|
|
|
|
<H4>Internet Relay Chat</H4>
|
|
|
|
<P>The QuakeForge developers maintain an IRC channel, #QuakeForge, on the Open
|
|
Projects network, located at irc.openprojects.net.
|
|
|
|
<H4>Contact form</H4>
|
|
|
|
<P>Send a message to the QuakeForge team. Be sure to include a valid email address
|
|
if you expect a reply.<br>
|
|
|
|
<FORM>
|
|
<P>Your email address:
|
|
<P><INPUT type="text" name="sender">
|
|
|
|
<P>Message:
|
|
<P><TEXTAREA name="message" cols="64" rows="16"></TEXTAREA>
|
|
<P><INPUT type="submit" name="clicked" value="Submit">
|
|
</FORM>
|
|
|
|
<!--NOSEARCH-->
|
|
<?
|
|
require("parts/postamble.php"); // Finish this sucker up
|
|
?>
|