-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomplain.php
50 lines (48 loc) · 1.15 KB
/
complain.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
38
39
40
41
42
43
44
45
46
47
48
49
50
<?PHP include("templates/nav1.php");
?>
<link href="com/style.css" rel="stylesheet" type="text/css">
<style> input[type="text"], input[type="email"], textarea { margin:0 !important }</style>
<body>
<center>
<br><br>
<h1 style="font-size:32; font-weight:800">Add Complain Here </h1><br>
<form action="submit.php" method="POST" style=" padding-top: 50px;">
<table>
<tr>
<td>
<label for="name">Name:</label>
</td>
<td>
<input type="text" id="name" name="name" required><br><br>
</td>
</tr>
<tr>
<td>
<label for="email">Email:</label>
</td>
<td>
<input type="email" id="email" name="email" required><br><br>
</td>
</tr>
<tr>
<td>
<label for="subject">Subject:</label>
</td>
<td>
<input type="text" id="subject" name="subject" required><br><br>
</td>
</tr>
<tr>
<td>
<label for="message">Message:</label><br>
</td>
<td>
<textarea id="message" name="message" rows="5" cols="30" required></textarea><br><br>
</td>
</tr>
</table>
<input type="submit" value="Submit">
</form>
</center>
</body>
</html>