-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathcontact.php
More file actions
48 lines (46 loc) · 1.5 KB
/
Copy pathcontact.php
File metadata and controls
48 lines (46 loc) · 1.5 KB
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
<!DOCTYPE html>
<html lang="en">
<?php
include("login.php");
include("includes/head.php");
?>
<body>
<div id="navb">
<?php
include("includes/topbar.php");
include("includes/navbar.php");
?>
</div>
<div id="all">
<div id="post-content">
<div id="hot">
<div class="box">
<div class="container">
<h2>Contact us</h2>
<h4>this feature is currently not available, our apologies.</h4>
<form action="index.php">
<div class="form-group">
<label>Email:</label>
<input type="email" class="form-control" placeholder="Enter email">
</div>
<div class="form-group">
<label for="pwd">Question & Complaints</label>
<input type="text" class="form-control" placeholder="Enter question or complaint">
</div>
<button type="submit" class="btn btn-default">Submit</button>
</form>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
<?php
include("includes/footer.php");
include("includes/copyright.php");
?>
</div>
<?php include("includes/scripts.php"); ?>
</body>
</html>