-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcontact.php
44 lines (41 loc) · 1.44 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
38
39
40
41
42
43
44
<?php
include 'includes/header.php';
?>
<section class="feature-image feature-image-default-alt" data-type="background" data-speed="2">
<h1 class="page-title">Contact</h1>
</section>
<div class="container">
<div class="row" id="primary">
<div id="content" class="col-sm-12">
<section class="main-content">
<p class="lead"> Get in touch with me!</p>
<form role="form" class="clearfix">
<div class="row">
<div class="col-sm-6">
<div class="form-group">
<label for="contact-name" class="sr-only">Name</label>
<input type="text" name="" class="form-control input-lg" id="contact-name" placeholder="Your Name">
</div>
</div>
<div class="col-sm-6">
<div class="form-group">
<label for="contact-email" class="sr-only">E-mail</label>
<input type="text" name="" class="form-control input-lg" id="contact-email" placeholder="Your E-mail">
</div>
</div>
<div class="col-sm-12">
<div class="form-group">
<label for="contact-message" class="sr-only">Message</label>
<textarea type="text" name="" class="form-control input-lg" id="contact-message" placeholder="Your Message"></textarea>
</div>
</div>
</div>
<input type="submit" name="" class="btn btn-lg btn-block btn-success" value="Get in Touch">
</form>
</section>
</div>
</div>
</div>
<?php
include 'includes/footer.php';
?>