-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcontact.php
More file actions
51 lines (43 loc) · 1.42 KB
/
contact.php
File metadata and controls
51 lines (43 loc) · 1.42 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
49
50
51
<?php include ('include_page/config.php'); ?>
<!DOCTYPE html>
<html lang="en">
<!-- Header -->
<?php include ('include_page/header.php'); ?>
<body>
<!-- Navigation Bar -->
<?php include ('include_page/navbar.php'); ?>
<div class="container pt">
<div class="row mt">
<div class="col-lg-6 col-lg-offset-3 centered">
<h3>CONTACT ME</h3>
<hr>
<p>It is a long established fact that a reader will be distracted by the readable content of a page when looking at its layout.</p>
</div>
</div>
<div class="row mt">
<div class="col-lg-8 col-lg-offset-2">
<form role="form">
<div class="form-group">
<input type="name" class="form-control" id="NameInputEmail1" placeholder="Your Name">
<br>
</div>
<div class="form-group">
<input type="email" class="form-control" id="exampleInputEmail1" placeholder="Enter email">
<br>
</div>
<div class="form-group">
<input type="email" class="form-control" id="subjectEmail1" placeholder="Subject">
<br>
</div>
<textarea class="form-control" rows="6" placeholder="Enter your text here"></textarea>
<br>
<button type="submit" class="btn btn-success">SUBMIT</button>
</form>
</div>
</div><!-- /row -->
</div><!-- /container -->
<!-- +++++ Footer Section +++++ -->
<?php include('include_page/footer.php'); ?>
<?php include ('include_page/bottom.php'); ?>
</body>
</html>