-
Notifications
You must be signed in to change notification settings - Fork 14
/
contact.php
155 lines (141 loc) · 6.52 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
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
<?php
$name = $_REQUEST['txtName'];
$email = $_REQUEST['txtEmail'];
$message = $_REQUEST['txtMessage'];
//database connection
include('dbConnect.php');
$sql = "INSERT into contact(name,email,message) values(:name,:email,:message)";
$stmt = $pdo->prepare($sql);
$stmt->bindParam(":name",$name);
$stmt->bindParam(":email",$email);
$stmt->bindParam(":message",$message);
$stmt->execute();
?>
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Document</title>
<!-- Bootstrap CSS -->
<link rel="stylesheet" href="css/bootstrap.min.css">
<link rel="stylesheet" href="css/style.css">
<link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/font-awesome/4.7.0/css/font-awesome.min.css">
<title></title>
<style>
.fa-check{
font-size: 80px;
color: #27ae60;
font-weight: bold;
height: 110px;
width: 110px;
border: 1px solid #27ae60;
text-align: center;
padding-top: 13px;
border-radius: 50%;
box-sizing: border-box;
margin: 40px 0 0 0px;
}
</style>
</head>
<body>
<div class="container-fluid" id="cont-3">
<header id="nav-bar">
<nav class="navbar navbar-expand-lg navbar-light bg-dark">
<a class="navbar-brand" href=index.html style="color: white; font-weight: 600; margin-top: 15px;">GO VOTE</a>
<button class="navbar-toggler" type="button" data-toggle="collapse" data-target="#navbarNav" aria-controls="navbarNav" aria-expanded="false" aria-label="Toggle navigation">
<span class="navbar-toggler-icon" style="color: white;"></span>
</button>
<div class="collapse navbar-collapse" id="navbarNav">
<ul class="navbar-nav ml-auto animate__animated animate__bounceInDown" style="padding-right: 50px;">
<li class="nav-item" >
<a class="nav-link" href="index.html" style="color:white; font-weight: 600; text-align: center; font-size: 18px; margin-top: 20px; text-transform: capitalize; padding: 20px;">Home</a>
</li>
<li class="nav-item" >
<a class="nav-link" href="candidate.php" style="color: white; font-weight: 600; text-align: center; font-size: 18px; margin-top: 20px; text-transform: capitalize; padding: 20px;">Candidate</a>
</li>
<li class="nav-item">
<a class="nav-link" href="result.php" style="color: white; font-weight: 600; text-align: center; font-size: 18px; margin-top: 20px; text-transform: capitalize; padding: 20px;">Result</a>
</li>
<li class="nav-item" >
<a class="nav-link" href="about.php" style="color: white; font-weight: 600; text-align: center; font-size: 18px; margin-top: 20px; text-transform: capitalize; padding: 20px;">About</a>
</li>
</ul>
</div>
</nav>
</header>
<section>
<div class="container">
<div class="row">
<div class="col-md-12">
<i class="fa fa-check" aria-hidden="true" ></i>
<H1 style="margin-top: 40px;">Successfully Submitted</H1>
</div>
<div class="col-md-12">
<p>Go Home Click this Link -><a href="index.html">Click Me</a></p>
</div>
</div>
</div>
</section>
<section>
<div class="container" style="margin-top:190px">
<div class="row">
<div class="col-md-12">
</div>
</div>
</div>
</section>
<section>
<div class="container-fluid">
<div class="row">
<div class="col-md-6">
<hr>
<div class="Footer">
<ul style="display: flex;">
<li style="list-style: none; padding: 10px; "><a href="index.html" style="text-decoration: none; color: #a517ba;">Home</a></li>
<li style="list-style: none; padding: 10px; "><a href="about.php" style="text-decoration: none; color: #a517ba;">About</a></li>
<li style="list-style: none; padding: 10px; "><a href="suggestion.html" style="text-decoration: none; color: #a517ba;">Suggestion</a></li>
<li style="list-style: none; padding: 10px; "><a href="contact_form.php" style="text-decoration: none; color: #a517ba;">Contact</a></li>
</ul>
</div>
</div>
<div class="col-md-6">
<hr>
<div class="social-icon">
<ul >
<li>
<a href="">
<i class="fa fa-facebook"></i>
</a>
</li>
<li>
<a href="">
<i class="fa fa-google-plus"></i>
</a>
</li>
<li>
<a href="">
<i class="fa fa-linkedin"></i>
</a>
</li>
<li>
<a href="">
<i class="fa fa-twitter"></i>
</a>
</li>
<li>
<a href="">
<i class="fa fa-pinterest"></i>
</a>
</li>
</ul>
</div>
</div>
</div>
</div>
</section>
<!-- Optional JavaScript -->
<!-- jQuery first, then Popper.js, then Bootstrap JS -->
<script src="js/jquery-3.2.1.slim.min.js"></script>
<script src="js/popper.min.js"></script>
<script src="js/bootstrap.min.js"></script>