-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathcontact.php
128 lines (105 loc) · 6.11 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
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
<?php
include_once("header.html");
?>
<title>Final Year Project</title>
<link rel="stylesheet" href="assets/css/contact.css">
</head>
<body>
<?php
include_once("navbar.html");
?>
<!-- Contact Us Section -->
<section class="Material-contact-section section-padding section-dark">
<div class="container">
<div class="row">
<!-- Section Titile -->
<div class="col-md-12 wow animated fadeInLeft" data-wow-delay=".2s">
<h1 class="section-title" id="contact-title" style="color: #e91d36;">Love to Hear From You</h1>
</div>
</div>
<div class="row">
<!-- Section Titile -->
<div class="col-md-6 mt-3 contact-widget-section2 wow animated fadeInLeft" data-wow-delay=".2s">
<p class="mb-5 text-justify">We provide voting service you can ask for voting service. You can ask for voting setup of your organization, Feel free to send us message via our website, or social media. and your feedback and review also appreciated.</p>
<div class="social">
<a href="https://facebook.com" class="text-decoration-none text-dark"><i class="fa fa-facebook mr-3"></i> Facebook/voblok </a>
</div>
<div class="social">
<a href="https://twitter.com" class="text-decoration-none text-dark"><i class="fa fa-twitter mr-3"></i> twitter/voblok </a>
</div>
<div class="social">
<a href="https://instagram.com" class="text-decoration-none text-dark"><i class="fa fa-instagram mr-3"></i> instagram/voblok </a>
</div>
<div class="social">
<a href="mailto:EVoteCastingCoderBoost++@gmail.com" class="text-decoration-none text-dark"><i class="fa fa-google mr-3"></i> Gmail </a>
</div>
<div class="social">
<a href="https://linkedin.com" class="text-decoration-none text-dark"><i class="fa fa-linkedin mr-3"></i> linkedin/voblok </a>
</div>
</div>
<!-- contact form -->
<div class="col-md-6 wow animated fadeInRight" data-wow-delay=".2s">
<!-- <form class="shake" role="form" method="post" id="contactForm" name="contact-form" data-toggle="validator">
<div class="form-group label-floating">
<label class="control-label" for="name">Name</label>
<input class="form-control" id="name" type="text" name="name" required data-error="Please enter your name">
<div class="help-block with-errors"></div>
</div>
<div class="form-group label-floating">
<label class="control-label" for="email">Email</label>
<input class="form-control" id="email" type="email" name="email" required data-error="Please enter your Email">
<div class="help-block with-errors"></div>
</div>
<div class="form-group label-floating">
<label class="control-label">Subject</label>
<input class="form-control" id="msg_subject" type="text" name="subject" required data-error="Please enter your message subject">
<div class="help-block with-errors"></div>
</div>
<div class="form-group label-floating">
<label for="message" class="control-label">Message</label>
<textarea class="form-control" rows="3" id="message" name="message" required data-error="Write your message"></textarea>
<div class="help-block with-errors"></div>
</div>
<div class="form-submit mt-5">
<button class="btn btn-outline-dark" type="submit" id="form-submit"><i class="material-icons mdi mdi-message-outline"></i> Send Message</button>
<div id="msgSubmit" class="h3 text-center hidden"></div>
<div class="clearfix"></div>
</div>
</form> -->
<form class="contact1-form validate-form">
<div class="wrap-input1 validate-input" data-validate = "Name is required">
<input class="input1" type="text" name="name" placeholder="Name">
<span class="shadow-input1"></span>
</div>
<div class="wrap-input1 validate-input" data-validate = "Valid email is required: ex@abc.xyz">
<input class="input1" type="text" name="email" placeholder="Email">
<span class="shadow-input1"></span>
</div>
<div class="wrap-input1 validate-input" data-validate = "Subject is required">
<input class="input1" type="text" name="subject" placeholder="Subject">
<span class="shadow-input1"></span>
</div>
<div class="wrap-input1 validate-input" data-validate = "Message is required">
<textarea class="input1" name="message" placeholder="Message"></textarea>
<span class="shadow-input1"></span>
</div>
<div class="container-contact1-form-btn">
<button class="contact1-form-btn">
<span>
Send Email
<i class="fa fa-long-arrow-right" aria-hidden="true"></i>
</span>
</button>
</div>
</form>
</div>
</div>
</div>
</section>
</div>
<?php
include("footer.html");
include_once("footer-script.html");
?>
</body>
</html>