blob: c5d8dae916e9bfa63fdb26501d61bcbb595d500d (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
|
<?php
include "common/header.php";
?>
<style>
textarea.message {
width: 300px;
height: 100px;
}
input.subject {
width: 300px;
}
</style>
<form method="post" action="contact-process.php">
Subject:
<input name="subject" class="subject" type="text"/>
Body:
<textarea name="message" class="message"></textarea>
<input type="submit" value="Submit"/>
</form>
<?php
include "common/footer.php";
|