forked from mdsami/portfolio
-
Notifications
You must be signed in to change notification settings - Fork 0
/
contact.php
82 lines (71 loc) · 5.23 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
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
<?php
/**
* Template Name: Contact
*
* If the user has selected a static page for their homepage, this is what will
* appear.
* Learn more: https://developer.wordpress.org/themes/basics/template-hierarchy/
*
* @package WordPress
* @subpackage Mdsami_Portfolio
* @since 1.0
* @version 1.0
*/
get_header(); ?>
<div class="main-wrapper">
<section class="cta-section theme-bg-light py-5">
<div class="container text-center single-col-max-width">
<h2 class="heading">Contact</h2>
<div class="intro">
<p>Interested in hiring me for your project or just want to say hi? You can fill in the contact form below or send me an email to <a href="mailto:#">hello@mdsami.me</a></p>
<p>Want to get connected? Follow me on the social channels below.</p>
<ul class="list-inline mb-0">
<li class="list-inline-item mb-3"><a class="facebook" href="https://fb.me/eng.mdsami" target="_blank"><i class="fab fa-facebook fa-fw fa-lg"></i></a></li>
<li class="list-inline-item mb-3"><a class="twitter" href="https://twitter.com/mdsami5" target="_blank"><i class="fab fa-twitter fa-fw fa-lg"></i></a></li>
<li class="list-inline-item mb-3"><a class="linkedin" href="https://linkedin.com/in/mdsami55" target="_blank"><i class="fab fa-linkedin-in fa-fw fa-lg"></i></a></li>
<li class="list-inline-item mb-3"><a class="github" href="https://github.com/mdsami" target="_blank"><i class="fab fa-github-alt fa-fw fa-lg"></i></a></li>
<li class="list-inline-item"><a class="instagram" href="https://www.instagram.com/mdsami5/" target="_blank"><i class="fab fa-instagram fa-fw fa-lg"></i></a></li>
<li class="list-inline-item mb-3"><a class="medium" href="https://medium.com/@mdsami" target="_blank"><i class="fab fa-medium-m fa-fw fa-lg"></i></a></li>
<li class="list-inline-item mb-3"><a class="docker" href="https://hub.docker.com/u/mdsami" target="_blank"><i class="fab fa-docker fa-fw fa-lg"></i></a></li>
<!--<li class="list-inline-item mb-3"><a class="facebook" href="#"><i class="fab fa-facebook-f fa-fw fa-lg"></i></a></li>-->
</ul><!--//social-list-->
</div><!--//container-->
</section>
<section class="contact-section px-3 py-5 p-md-5">
<div class="container">
<form id="contact-form" class="contact-form col-lg-8 mx-lg-auto" method="post" action="#">
<h3 class="text-center mb-3">Get In Touch</h3>
<div class="form-row">
<div class="form-group col-md-6">
<label class="sr-only" for="cname">Name</label>
<input type="text" class="form-control" id="cname" name="name" placeholder="Name" minlength="2" required="" aria-required="true">
</div>
<div class="form-group col-md-6">
<label class="sr-only" for="cemail">Email</label>
<input type="email" class="form-control" id="cemail" name="email" placeholder="Email" required="" aria-required="true">
</div>
<div class="form-group col-12">
<select id="services" class="custom-select" name="services">
<option selected>Select a service package you're interested in...</option>
<option value="basic">Basic</option>
<option value="standard">Standard</option>
<option value="premium">Premium</option>
<option value="not sure">Not sure</option>
</select>
<small class="form-text text-muted pt-1"><i class="fas fa-info-circle mr-2 text-primary"></i>Want to know what's included in each package? Check the <a href="services.html" target="_blank">Services & Pricing</a> page.</small>
</div>
<div class="form-group col-12">
<label class="sr-only" for="cmessage">Your message</label>
<textarea class="form-control" id="cmessage" name="message" placeholder="Enter your message" rows="10" required="" aria-required="true"></textarea>
</div>
<div class="form-group col-12">
<button type="submit" class="btn btn-block btn-primary py-2">Send Now</button>
</div>
</div><!--//form-row-->
</form>
</div><!--//container-->
</section>
<footer class="footer text-center py-4">
<small class="copyright"> Copyright ©2020 <a href="http://mdsami.me/" target="_blank">mdsami</a></small>
</footer>
</div><!--//main-wrapper-->