-
Notifications
You must be signed in to change notification settings - Fork 0
/
register.php
91 lines (72 loc) · 2.7 KB
/
register.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
<?php
@include 'connect.php';
if(isset($_POST['submit'])){
$name = mysqli_real_escape_string($con,$_POST['name']);
$email = mysqli_real_escape_string($con,$_POST['email']);
$pass = md5($_POST['password']);
$cpass = md5($_POST['cpassword']);
$user_type = $_POST['user_type'];
$select = " SELECT * FROM user WHERE email = '$email' && password = '$pass'";
$result = mysqli_query($con, $select);
if(mysqli_num_rows($result) > 0){
$error[] = 'user already exist!';
}else{
if($pass != $cpass){
$error[] = 'passord not matched!';
}else{
$insert = "INSERT INTO user(name, email, password, user_type ) VALUES('$name','$email','$pass','$user_type')";
mysqli_query($con, $insert);
header('location:login.php');
}
}
};
?>
<!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>register form</title>
<!-- custom css file link-->
<link rel="stylesheet" type="text/css"href="./CSS/c1.css">
</head>
<body>
<nav>
<input type="checkbox" id="check">
<label for="check" class="checkbtn">
<i class="fas fa-bars"></i>
</label>
<label class="logo">Applex</label>
<ul>
<li><a href="index.php">Home</a></li>
<li><a href="login.php">Login</a></li>
<li><a class="active" href="register.php">Register</a></li>
</ul>
</nav>
<!-- form design -->
<div class="form-container">
<form action="" method="post">
<h3>register now</h3>
<?php
if(isset($error)){
foreach($error as $error){
echo '<span class="error-msg">'.$error.'</span>';
};
};
?>
<input type="text" name="name" required placeholder="Name">
<input type="email" name="email" required placeholder="E-mail">
<input type="password" name="password" required placeholder="Password">
<input type="password" name="cpassword" required placeholder="Confirm Password">
<select name="user_type">
<option value="user">user</option>
<option value="admin">admin</option>
</select>
<input type="submit" name="submit" value="register now" class="form-btn">
<p>Already have an account? <a href="login.php">Login Now</a></p>
</form>
</div>
<?php include('footer.php') ?>
</body>
</html>