mirror of
https://git.code.sf.net/p/quake/website
synced 2025-02-17 17:31:39 +00:00
added comment system, removed temporary files
This commit is contained in:
parent
1b1fbf2b1b
commit
05797ac079
3 changed files with 14 additions and 18 deletions
14
contact.php
14
contact.php
|
@ -20,6 +20,20 @@ development, you can contact the QuakeForge developers via the
|
|||
The QuakeForge developers maintain an IRC channel, #QuakeForge, on the Open
|
||||
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>
|
||||
|
||||
<?
|
||||
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>
|
||||
|
||||
<!--NOSEARCH-->
|
||||
<?
|
||||
require("parts/postamble.php"); // Finish this sucker up
|
||||
|
|
9
temp.php
9
temp.php
|
@ -1,9 +0,0 @@
|
|||
<html>
|
||||
<?
|
||||
<P>Message<TEXTAREA name="message" cols="40" rows="8" wrap="PHYSICAL">
|
||||
</TEXTAREA><P><INPUT TYPE="submit" VALUE="submit"></FORM>
|
||||
if ($submit == "submit") {
|
||||
mail("palisade@quakeforge.net", "Website comment", $message);
|
||||
}
|
||||
?>
|
||||
</html>
|
9
test.php
9
test.php
|
@ -1,9 +0,0 @@
|
|||
<html>
|
||||
<?
|
||||
<P>Message<TEXTAREA name="message" cols="40" rows="8" wrap="PHYSICAL">
|
||||
</TEXTAREA><P><INPUT TYPE="submit" VALUE="submit"></FORM>
|
||||
if ($submit == "submit") {
|
||||
mail("palisade@quakeforge.net", "Website comment", $message);
|
||||
}
|
||||
?>
|
||||
</html>
|
Loading…
Reference in a new issue