-
-
Notifications
You must be signed in to change notification settings - Fork 29
/
support_sign.php
128 lines (109 loc) · 5.31 KB
/
support_sign.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
$error_msg="";
if(isset($_POST['login']) || isset($_POST['signup'])){
include 'connection.php';
session_start();
if(isset($_POST['login'])){
$log_email =$_POST['log_email'];
$log_pass =$_POST['log_pass'];
$q="SELECT name,password from support where email='$log_email'; ";
$q1=mysqli_query($con,$q);
$row=mysqli_fetch_array($q1);
if($row['password'] == $log_pass){
$_SESSION['support_log_name'] =$row['name'];
$_SESSION['support_log_email'] =$log_email;
header("location:support_home.php");
}
else{
$error_msg="incorrect email or password";
}
}
else if(isset($_POST['signup'])){
$sign_name =$_POST['sign_name'];
$sign_pass =$_POST['sign_pass'];
$sign_email =$_POST['sign_email'];
$sign_phone =$_POST['sign_phone'];
$sign_address =$_POST['sign_address'];
$q2="SELECT email from support where email='$sign_email' ";
$row=mysqli_query($con,$q2);
$rowcount=mysqli_num_rows($row);
if($rowcount>0){
$error_msg= "email already exists";
}
else{
$q1="INSERT INTO `support` (`name`, `password`, `email`, `phone`, `address`) VALUES ('$sign_name', '$sign_pass', '$sign_email', '$sign_phone', '$sign_address');";
$q3=mysqli_query($con,$q1);
if($q3){
$_SESSION['support_log_email'] =$sign_email;
$_SESSION['support_log_name'] =$sign_name;
header("location:support_home.php");
}
}
}
}
?>
<!DOCTYPE html>
<html>
<head>
<link rel="shortcut icon" href="images/logo.png" type="image/png">
<link rel="stylesheet" type="text/css" href="css/support_sign.css">
<title>Chat Support Executive Main Page</title>
</head>
<body>
<div class="topnav">
<img src="images/header_logo.jpeg" height= "45px" width = "110px" align="left">
<div class="restaurant">for chat support executives</div>
<a style="float:right;" onclick="document.getElementById('id02').style.display='block'" style="width:auto;" >Sign up</a>
<div class="or">or</div>
<a style="float:right;" onclick="document.getElementById('id01').style.display='block'" style="width:auto;">Login</a>
</div>
<div id="id01" class="modal">
<form class="modal-content animate" method="POST" >
<div class="imgcontainer">
<span onclick="document.getElementById('id01').style.display='none'" class="close" title="Close Modal">×</span>
</div>
<div class="container">
<h3><center>Chat Support Executive</center></h3>
<label for="log_email"><b>Email</b></label>
<input type="text" placeholder="Enter Email" name="log_email" required>
<label for="log_pass"><b>Password</b></label>
<input type="password" placeholder="Enter Password" name="log_pass" required>
<div id="log_error_msg" class="error_msg"><?php if($error_msg=="incorrect email or password") echo $error_msg; ?></div>
<button type="submit" name="login" value="login">Login</button>
</div>
</form>
</div>
<div id="id02" class="modal">
<form class="modal-content animate" method="POST" >
<div class="imgcontainer">
<span onclick="document.getElementById('id02').style.display='none'" class="close" title="Close Modal">×</span>
</div>
<div class="container">
<h3><center>Chat Support Executive</center></h3>
<label for="sign_name"><b>Name</b></label>
<input type="text" placeholder="Enter Name" name="sign_name" required>
<label for="sign_email"><b>Email</b></label>
<input type="text" placeholder="Enter Email" name="sign_email" required>
<label for="sign_pass"><b>Password</b></label>
<input type="password" placeholder="Enter Password" name="sign_pass" required>
<label for="sign_phone"><b>Phone</b></label>
<input type="text" placeholder="Enter Phone" name="sign_phone" required>
<label for="sign_address"><b>Address</b></label>
<input type="text" placeholder="Enter Address" name="sign_address" required>
<label for="sign_desc"><b>Description</b></label>
<input type="text" placeholder="Enter Description" name="sign_desc" required>
<div id="sign_error_msg" class="error_msg"><?php if($error_msg=="email already exists") echo $error_msg; ?></div>
<button type="submit" name="signup" value="Sign Up">Sign Up</button>
</div>
</form>
</div>
<center><video height="300" width="300" autoplay="" loop=""><source src="https://d3i4yxtzktqr9n.cloudfront.net/web-eats/static/videos/header_animation-c22df1758f.mp4" type="video/mp4"></video></center>
<div class="navbar">
<a href="index.php">User</a>
<a href="restaurant_sign.php">Restaurant</a>
<a href="rider_sign.php">Rider</a>
<div class="copy">© foodly</div>
</div>
<script src="js/support_sign.js"></script>
</body>
</html>