website/contact.php

49 lines
1.5 KiB
PHP
Raw Normal View History

2000-10-13 03:30:42 +00:00
<?
if (isset ($clicked)) {
StripSlashes ($message);
mail ("quakeforge-user@lists.quakeforge.net", "Comments (Sent from the QuakeForge web site)", StripSlashes ($message), "From: $sender\r\nReply-To: $sender\r\n");
header ("Location: http://www.quakeforge.net/thanks.php");
2000-10-13 03:30:42 +00:00
exit;
}
// Preamble
2000-10-13 03:30:42 +00:00
$pageName = "Contact Us";
$focused = "none"; // Dock icon name to gets a border
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
<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
<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
<A href ="irc://irc.openprojects.net/quakeforge">channel</A>,
#QuakeForge, on the Open Projects network, located at irc.openprojects.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>
<P>Your email address:
<P><INPUT type="text" name="sender">
2000-10-13 03:30:42 +00:00
<P>Message:
2000-11-13 17:55:00 +00:00
<P><TEXTAREA name="message" cols="64" rows="16"></TEXTAREA>
<P><INPUT type="submit" name="clicked" value="Submit">
</FORM>
2000-10-13 03:30:42 +00:00
<!--NOSEARCH-->
<?
require "parts/postamble.php"; // Finish this sucker up
2000-10-13 03:30:42 +00:00
?>