-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathcontact.php
50 lines (40 loc) · 1.06 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
<?php include('logic.php'); ?>
<?php
$msg = "Welcome ";
session_start();
if (isset($_SESSION['eventuser'])) {
$user_name = $_SESSION['eventuser'];
alertbox($msg . $user_name);
}
?>
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Contact_Us</title>
<link rel="stylesheet" type="text/css" href="./css/style.css">
<script type="text/javascript" src="./js/index.js"></script>
</head>
<body>
<div class="headerpage">
<?php include("option.php"); ?>
<?php include("log_sign.php"); ?>
</div>
<div id="container_contact">
<h3>
You may Call or Whatsapp for contact us.
</h3>
<div>
<p>
Team organiser is Mr. Manish Kumar and call at +91-8285000389
</p>
<p>
Email- [email protected]
</p>
</div>
</div>
<?php include("footer.php"); ?>
</body>
</html>