-
Notifications
You must be signed in to change notification settings - Fork 0
/
contact.php
37 lines (35 loc) · 1.28 KB
/
contact.php
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
36
37
<?php
include('config.php');
$pageName = 'contact';
$pageTitle = 'Contact';
include('./includes/header.php');
?>
<form action="handler/mail.php" method="POST">
<fieldset>
<legend>Contact Information</legend>
<p>Name (required)</p> <input type="text" name="name" placeholder="Type your name here...">
<p>Email (required)</p> <input type="text" name="email" placeholder="Type your e-mail address here...">
</fieldset>
<br />
<fieldset>
<legend>Other Information</legend>
<p>Website</p> <input type="text" name="website" placeholder="Type your website here...">
<br />
</fieldset>
<br />
<fieldset>
<p>Type (required)</p>
<select name="type" size="1">
<option value="update">Feedback</option>
<option value="change">DMCA Report</option>
<option value="addition">Report Issue</option>
<option value="new">Feature Request</option>
</select>
<legend>Your Message</legend>
<p>Message (required)</p><textarea name="message" rows="8" cols="29" placeholder="Type your text message here..."></textarea><br />
<input type="submit" value="Send"><input type="reset" value="Clear">
</fieldset>
</form>
<!-- Critical CSS Rendering -->
<link rel="stylesheet" type="text/css" href="assets/css/mail.css?v=1" />
<?php include('./includes/footer.php'); ?>