-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathcontact.php
More file actions
executable file
·154 lines (138 loc) · 6.9 KB
/
contact.php
File metadata and controls
executable file
·154 lines (138 loc) · 6.9 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
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
<?php
SESSION_start();
if(!isset($_SESSION['userData']))
{
header("location:login/index.php");
}
//$var1 = '';
?>
<!DOCTYPE html>
<html>
<title>contact</title>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" href="w3.css">
<link rel="stylesheet" href="https://fonts.googleapis.com/css?family=Raleway">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/css/font-awesome.min.css">
<style>
body,h1,h2,h3,h4,h5,h6 {font-family: "Raleway", Arial, Helvetica, sans-serif}
.mySlides {display:none}
body{
background: url(images/back.jpg) no-repeat center center fixed;
background-size: cover;
}
table {
border-collapse: collapse;
width: 100%;
}
th, td {
text-align: left;
padding: 8px;
}
</style>
<body class="w3-content w3-border-left w3-border-right">
<!-- Sidebar/menu -->
<nav class="w3-sidebar w3-light-grey w3-collapse w3-top" style="z-index:3;width:260px" id="mySidebar">
<div class="w3-container w3-display-container w3-padding-16">
<i onclick="w3_close()" class="fa fa-remove w3-hide-large w3-button w3-transparent w3-display-topright"></i>
<h2 class="w3-text-blue">CARLELO.COM</h2>
<h3>Rent cars from</h3>
<h6>Rs 299 per hour</h6>
<hr>
<form action="action_page.php" method="post">
<p><label><i class="fa fa-car"></i> CAR ID</label></p>
<input class="w3-input w3-border" type="text" placeholder="Enter ID" name="car_id" pattern="[0-9]{3}" title="3 digit ID" required>
<p><label><i class="fa fa-calendar-check-o"></i> PICK UP</label></p>
<input class="w3-input w3-border" type="date" name="pick_date" required>
<p><label><i class="fa fa-star"></i> PICK UP TIME</label></p>
<input class="w3-input w3-border" type="time" name="pick_time" required>
<p><label><i class="fa fa-calendar-o"></i> DROP OFF</label></p>
<input class="w3-input w3-border" type="date" name="drop_date" required>
<p><label><i class="fa fa-star"></i> DROP OFF TIME</label></p>
<input class="w3-input w3-border" type="time" name="drop_time" required>
<p><button class="w3-button w3-block w3-blue w3-left-align" type="submit"><i class="fa fa-search w3-margin-right"></i> BOOK</button></p>
</form>
</div>
<div class="w3-bar-block">
<a href="maincopy.php" class="w3-bar-item w3-button w3-padding-16"><i class="fa fa-car"></i> Car Profile</a>
<a href="rules.php" class="w3-bar-item w3-button w3-padding-16"><i class="fa fa-times"></i> Rules</a>
<a href="about.php" class="w3-bar-item w3-button w3-padding-16"><i class="fa fa-info"></i> About US</a>
<a href="javascript:void(0)" class="w3-bar-item w3-button w3-padding-16" onclick="document.getElementById('subscribe').style.display='block'"><i class="fa fa-rss"></i> Subscribe</a>
<a href="contact.php" class="w3-bar-item w3-button w3-padding-16"><i class="fa fa-envelope"></i> Contact</a>
</div>
</nav>
<!-- Top menu on small screens -->
<header class="w3-bar w3-top w3-hide-large w3-black w3-xlarge">
<span class="w3-bar-item">Carlelo</span>
<a href="javascript:void(0)" class="w3-right w3-bar-item w3-button" onclick="w3_open()"><i class="fa fa-bars"></i></a>
</header>
<!-- Overlay effect when opening sidebar on small screens -->
<div class="w3-overlay w3-hide-large" onclick="w3_close()" style="cursor:pointer" title="close side menu" id="myOverlay"></div>
<!-- !PAGE CONTENT! -->
<div class="w3-main" style="margin-left:260px">
<!-- Push down content on small screens -->
<div class="w3-hide-large" style="margin-top:80px"></div>
<a href="mybooking.php"><h2 class="w3-text-blue" style="float: left"> Hi <?php echo $_SESSION['userData']['first_name']; ?></h2></a><h2 style="float:right; color: white;"><a href="login/logout.php">LOGOUT</a></h2> <div class="w3-container">
<!--h2 class="w3-text-blue w3-light-grey"><strong><?php echo $var1;?></strong></h2><br-->
<h2>Questions? Go ahead, ask them:</h2>
<form action="#contact.php" target="_blank" method="post">
<p><input class="w3-input w3-border" type="text" placeholder="Name" name="name" required name="Name"></p>
<p><input class="w3-input w3-border" type="text" placeholder="Email" name="email" required name="Email"></p>
<p><input class="w3-input w3-border" type="text" placeholder="Message" name="msg" required name="Message"></p>
<button type="submit" class="w3-button w3-blue w3-third" style="float: right">Send a Message</button>
</form>
</div>
<div class="w3-container" id="contact">
<h2>Contact</h2>
<i class="fa fa-map-marker" style="width:30px"></i> Mumbai, Maharashtra, India<br>
<i class="fa fa-phone" style="width:30px"></i> Phone: +91 8097255372<br>
<i class="fa fa-envelope" style="width:30px"> </i> Email: 2015ankit.dalal@ves.ac.in<br>
<br>
<!--Map-->
<iframe width="100%" height="450" frameborder="0" style="border:0" src="https://www.google.com/maps/embed/v1/place?q=place_id:ChIJwe1EZjDG5zsRaYxkjY_tpF0&key=AIzaSyCWz7hUjpzVDDSfkGshHbVQMZQ2fLXa4i4" allowfullscreen></iframe>
<hr>
<p class="w3-light-grey" style="float: right">Subscribe to receive updates on available special offers.</p>
<p><button class="w3-button w3-blue w3-third" onclick="document.getElementById('subscribe').style.display='block'">Subscribe</button></p>
</div>
<hr>
<footer class="w3-container w3-padding-16" style="margin-top:32px">By <a href="https://sites.google.com/ves.ac.in/apn/" class="w3-hover-text-blue w3-text-white">Ankit-Pratik-Nilesh</a></footer>
<!-- End page content -->
</div>
<!-- Subscribe Modal -->
<div id="subscribe" class="w3-modal">
<div class="w3-modal-content w3-animate-zoom w3-padding-large">
<div class="w3-container w3-white w3-center">
<i onclick="document.getElementById('subscribe').style.display='none'" class="fa fa-remove w3-button w3-xlarge w3-right w3-transparent"></i>
<h2 class="w3-wide">SUBSCRIBE</h2>
<p>Join our mailing list to receive updates on special offers!</p>
<form action="subscribe.php" method="post">
<p><input class="w3-input w3-border" type="email" name="semail" placeholder="Enter e-mail"></p>
<button class="w3-button w3-padding-large w3-blue w3-margin-bottom" type="submit">Subscribe</button>
</form>
</div>
</div>
</div>
<script>
// Script to open and close sidebar when on tablets and phones
function w3_open() {
document.getElementById("mySidebar").style.display = "block";
document.getElementById("myOverlay").style.display = "block";
}
function w3_close() {
document.getElementById("mySidebar").style.display = "none";
document.getElementById("myOverlay").style.display = "none";
}
</script>
</body>
</html>
<!--?php
$name=$_POST['name'];
$email=$_POST['email'];
$msg=$_POST['msg'];
$subject = "From ".$name." Email:".$email;
if (mail('2015ankit.dalal@ves.ac.in', $subject, $msg)) {
$var1 = "Successfully SUBSCRIBED!";
} else {
$var1 = "Email delivery failed…";
}
?-->