2022-04-27 16:59:31 +00:00
|
|
|
<?php
|
2002-04-10 14:48:00 +00:00
|
|
|
if (isset ($clicked)) {
|
|
|
|
StripSlashes ($message);
|
2002-05-01 12:59:25 +00:00
|
|
|
StripSlashes ($subject);
|
|
|
|
|
|
|
|
if (!$subject)
|
|
|
|
$subject = "No subject!";
|
|
|
|
|
2002-08-29 18:46:46 +00:00
|
|
|
mail ("quakeforge-users@lists.quakeforge.net", StripSlashes ($subject), StripSlashes ($message), "From: $sender\r\nReply-To: $sender\r\n");
|
2002-04-10 14:48:00 +00:00
|
|
|
header ("Location: http://www.quakeforge.net/thanks.php");
|
2000-10-13 03:30:42 +00:00
|
|
|
exit;
|
|
|
|
}
|
2002-04-10 14:48:00 +00:00
|
|
|
|
|
|
|
// Preamble
|
2000-10-13 03:30:42 +00:00
|
|
|
$pageName = "Contact Us";
|
2007-03-16 00:49:05 +00:00
|
|
|
|
2002-04-10 14:48:00 +00:00
|
|
|
require "parts/preamble.php"; // Load most of document
|
2000-10-13 03:30:42 +00:00
|
|
|
?>
|
|
|
|
<!--SEARCHME-->
|
2000-11-13 17:55:00 +00:00
|
|
|
<H4>Electronic Mail</H4>
|
|
|
|
|
|
|
|
<P>Please direct support questions to the
|
2002-04-10 14:48:00 +00:00
|
|
|
<A href="mailto:quakeforge-users@lists.quakeforge.net">QuakeForge Users</A> mailing list.
|
2000-10-13 03:30:42 +00:00
|
|
|
|
|
|
|
<P>If you have ideas about new features for QuakeForge or wish to help in
|
|
|
|
development, you can contact the QuakeForge developers via the
|
2002-04-10 14:48:00 +00:00
|
|
|
<A href="mailto:quakeforge-devel@lists.quakeforge.net">QuakeForge Development</A>
|
2000-11-13 17:55:00 +00:00
|
|
|
mailing list.
|
|
|
|
|
|
|
|
<H4>Internet Relay Chat</H4>
|
|
|
|
|
2001-07-17 22:28:22 +00:00
|
|
|
<P>The QuakeForge developers maintain an IRC
|
2003-06-03 15:16:33 +00:00
|
|
|
<A href ="irc://irc.quakeforge.net/quakeforge">channel</A>,
|
2004-02-05 23:48:36 +00:00
|
|
|
#QuakeForge, on irc.quakeforge.net (irc.oftc.net).
|
2000-11-13 17:55:00 +00:00
|
|
|
|
|
|
|
<H4>Contact form</H4>
|
2000-10-13 03:30:42 +00:00
|
|
|
|
2000-11-13 17:55:00 +00:00
|
|
|
<P>Send a message to the QuakeForge team. Be sure to include a valid email address
|
|
|
|
if you expect a reply.<br>
|
2000-10-13 03:30:42 +00:00
|
|
|
|
2000-11-13 17:55:00 +00:00
|
|
|
<FORM>
|
2002-05-01 12:59:25 +00:00
|
|
|
<TABLE cellPadding="0" cellSpacing="0">
|
|
|
|
<TR>
|
|
|
|
<TD>
|
|
|
|
<P>Your email address: <BR>
|
|
|
|
<SPAN class="smallText">(will not be used for any purpose other than to send this email)</SPAN><BR>
|
|
|
|
<INPUT type="text" name="sender" size="32">
|
|
|
|
</TD>
|
|
|
|
<TD vAlign="bottom" align="right">
|
|
|
|
<DIV align="right"><INPUT type="submit" name="clicked" value="Send Message"></DIV>
|
|
|
|
</TD>
|
|
|
|
</TR>
|
|
|
|
<TR>
|
|
|
|
<TD colSpan="2">
|
|
|
|
<P>Subject:<BR>
|
|
|
|
<INPUT type="text" name="subject" size="66" maxLength="72">
|
2000-10-13 03:30:42 +00:00
|
|
|
|
2002-05-01 12:59:25 +00:00
|
|
|
<P>Message:<BR>
|
|
|
|
<TEXTAREA name="message" cols="64" rows="16"></TEXTAREA>
|
|
|
|
</TD>
|
|
|
|
</TR>
|
|
|
|
</TABLE>
|
2000-11-13 17:55:00 +00:00
|
|
|
</FORM>
|