~clinton-collins/familyproject/trunk

« back to all changes in this revision

Viewing changes to xampp/mailform.php

  • Committer: Clinton Collins
  • Date: 2009-06-26 19:54:58 UTC
  • Revision ID: clinton.collins@gmail.com-20090626195458-5ebba0qcvo15xlpy
Initial Import

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
<?php
 
2
        include "langsettings.php";
 
3
?>
 
4
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"
 
5
        "http://www.w3.org/TR/html4/loose.dtd">
 
6
<html>
 
7
        <head>
 
8
                <meta name="author" content="Kai Oswald Seidler, Kay Vogelgesang, Carsten Wiedmann">
 
9
                <link href="xampp.css" rel="stylesheet" type="text/css">
 
10
                <title></title>
 
11
        </head>
 
12
 
 
13
        <body>
 
14
                &nbsp;<p>
 
15
                <h1><?php echo $TEXT['mail-head']; ?></h1>
 
16
                <a href="mercury-help.php"><?php echo $TEXT['mail-hinweise']; ?></a><br><br>
 
17
    
 
18
                <form method="post" action="mailsend.php">
 
19
                        <table width="600" cellpadding="0" cellspacing="0" border="0">
 
20
                                <tr>
 
21
                                        <td align="left" width="200"><?php echo $TEXT['mail-adress']; ?></td>
 
22
                                        <td align="left" width="400"><input type="text" name="knownsender" size="40" value="postmaster@localhost"></td>
 
23
                                </tr>
 
24
 
 
25
                                <tr>
 
26
                                        <td align="left" width="200"><?php echo $TEXT['mail-adressat']; ?></td>
 
27
                                        <td align="left" width="400"><input type="text" name="recipients" size="40" value="admin@localhost"></td>
 
28
                                </tr>
 
29
 
 
30
                                <tr>
 
31
                                        <td align="left" width="200"><?php echo $TEXT['mail-cc']; ?></td>
 
32
                                        <td align="left" width="400"><input type="text" name="ccaddress" size="40"></td>
 
33
                                </tr>
 
34
 
 
35
                                <tr>
 
36
                                        <td align="left" width="200"><?php echo $TEXT['mail-subject']; ?></td>
 
37
                                        <td align="left" width="400"><input type="text" name="subject" size="40"></td>
 
38
                                </tr>
 
39
 
 
40
                                <tr>
 
41
                                        <td align="left" width="200">&nbsp;</td>
 
42
                                        <td align="center" width="400">&nbsp;</td>
 
43
                                </tr>
 
44
 
 
45
                                <tr>
 
46
                                        <td align="left" width="200"><?php echo $TEXT['mail-message']; ?></td>
 
47
                                        <td align="left" width="400"><textarea rows="6" name="message" cols="34"></textarea></td>
 
48
                                </tr>
 
49
 
 
50
                                <tr>
 
51
                                        <td align="left" width="200">&nbsp;</td>
 
52
                                        <td align="center" width="400">&nbsp;</td>
 
53
                                </tr>
 
54
 
 
55
                                <tr>
 
56
                                        <td align="left" width="200">&nbsp;</td>
 
57
                                        <td align="left" width="400"><input type="submit" value="Send"> * <input type="reset" value="Reset"></td>
 
58
                                </tr>
 
59
                        </table>
 
60
                </form><br><br>
 
61
<br>
 
62
                ######## <a href="http://localhost:2224" target="_new"><i>Mercury HTTPD Server listen on Port 2224</i></a> ########
 
63
    
 
64
        </body>
 
65
</html>