-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathragistration.php
More file actions
275 lines (216 loc) · 8.46 KB
/
Copy pathragistration.php
File metadata and controls
275 lines (216 loc) · 8.46 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
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
<?php
include('config.php');
$login_button = '';
if(isset($_GET["code"]))
{
$token = $google_client->fetchAccessTokenWithAuthCode($_GET["code"]);
if(!isset($token['error']))
{
$google_client->setAccessToken($token['access_token']);
$_SESSION['access_token'] = $token['access_token'];
$google_service = new Google_Service_Oauth2($google_client);
$data = $google_service->userinfo->get();
if(!empty($data['given_name']))
{
$_SESSION['user_first_name'] = $data['given_name'];
}
if(!empty($data['family_name']))
{
$_SESSION['user_last_name'] = $data['family_name'];
}
if(!empty($data['email']))
{
$_SESSION['user_email_address'] = $data['email'];
}
if(!empty($data['gender']))
{
$_SESSION['user_gender'] = $data['gender'];
}
if(!empty($data['picture']))
{
$_SESSION['user_image'] = $data['picture'];
}
}
}
if(!isset($_SESSION['access_token']))
{
$login_button = '<a style="text-decoration:none" href="'.$google_client->createAuthUrl().'"><font color="white">Login With Google</font></a>';
}
use PHPMailer\PHPMailer\PHPMailer;
use PHPMailer\PHPMailer\SMTP;
use PHPMailer\PHPMailer\Exception;
if($_SERVER["REQUEST_METHOD"] == "POST"){
include 'dbconnect.php';
$username = $_POST["username"];
$password = $_POST["password"];
$cpassword = $_POST["cpassword"];
//$v_code= $_POST[bin2hex(random_bytes(16))];
function sendMail($username,$v_code)
{
require ("PHPMailer\PHPMailer.php");
require ("PHPMailer\SMTP.php");
require ("PHPMailer\Exception.php");
$mail = new PHPMailer(true);
try {
//Server settings
//Enable verbose debug output
$mail->isSMTP(); //Send using SMTP
$mail->Host = 'smtp.gmail.com'; //Set the SMTP server to send through
$mail->SMTPAuth = true; //Enable SMTP authentication
$mail->Username = 'darshanrathod1293@gmail.com'; //SMTP username
$mail->Password = 'drashan14'; //SMTP password
$mail->SMTPSecure = PHPMailer::ENCRYPTION_SMTPS; //Enable implicit TLS encryption
$mail->Port = 465; //TCP port to connect to; use 587 if you have set `SMTPSecure = PHPMailer::ENCRYPTION_STARTTLS`
//Recipients
$mail->setFrom('darshanrathod1293@gmail.com', 'Darshan');
$mail->addAddress($username); //Add a recipient
//Content
$mail->isHTML(true); //Set email format to HTML
$mail->Subject = 'Testing expense tracker';
$mail->Body = 'Thanks for the ragistration !
click the ink below to verify the email adress <a href="http://localhost/pblproject/gayatri project/ragistration.php">verify</a>
';
$mail->send();
?>
<script>alert("The eamil is succefully send");</script>
<?php
} catch (Exception $e) {
echo "Message could not be sent. Mailer Error: {$mail->ErrorInfo}";
}
}
// $exists=false;
// Check whether this username exists
$existSql = "SELECT * FROM `ragistration` WHERE username = '$username'";
$result = mysqli_query($conn, $existSql);
$numExistRows = mysqli_num_rows($result);
if($numExistRows >0 ){
// $exists = true;
?>
<script>alert("The account is already exists");</script>
<?php
}
else{
// $exists = false;
if(($password == $cpassword)){
//$hash = password_hash($password, PASSWORD_DEFAULT);
$v_code=bin2hex(random_bytes(16));
$sql = "INSERT INTO `ragistration` ( `username`, `password`,`verification_code`, `is_verified`, `dt`) VALUES ('$username', '$password', '$v_code','0',current_timestamp())";
$result = mysqli_query($conn, $sql) ;
if ( $result && sendMail($_POST['username'],$v_code )){
// include require "sendemail.php";
echo "<script>alert('The ragistration is succefull');
window.location.href='ragistration.php';</script>";
}
// header('location:ragistration.ph }
else{
echo "<script> alert('The connection is succefull');
window.location.href='ragistration.php';</script> ";
}
}
else{
?>
<script>alert("Password is not matching");</script>
<?php
}
}
}
?>
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<script
src="https://kit.fontawesome.com/64d58efce2.js"
crossorigin="anonymous"
></script>
<link rel="stylesheet" href="style.css" />
<title>Sign in & Sign up Form</title>
<style type="text/css">
.google
{
width:300px;
height:50px;
background-color:#ff7f7f;
border-radius:35px;
font-size:25px;
font-family:ubuntu;
}
</style>
</head>
<body>
<div class="container">
<div class="forms-container">
<div class="signin-signup">
<form action="index.php" class="sign-in-form" method="post">
<h2 class="title">Sign in</h2>
<div class="input-field">
<i class="fas fa-user"></i>
<input type="text" name="username" id="username" placeholder="Username" required="required" />
</div>
<div class="input-field">
<i class="fas fa-lock"></i>
<input type="password" name ="password" id="password" placeholder="Password" required="required" />
</div>
<input type="submit" value="Login" class="btn solid" />
<p>OR</p>
<br/>
<?php
echo '<div align="center"><button class="google">'.$login_button . '</button></div>';
?>
<div style="margin-top:20px">
<p> Not rembember then
<a style="text-decoration:none"href="forget.php">Click forget password ?</a></p>
</div>
</form>
<form action="ragistration.php" class="sign-up-form" method="post">
<h2 class="title">Sign up</h2>
<div class="input-field">
<i class="fas fa-user"></i>
<input type="text" name ="username" id="username" placeholder="Username" required="required" />
</div>
<div class="input-field">
<i class="fas fa-lock"></i>
<input type="password" name="password" id="password" placeholder="Password" required="required" />
<span id = "message" style="color:red"> </span> <br><br>
</div>
<div class="input-field">
<i class="fas fa-lock"></i>
<input type="password" name ="cpassword" id="cpassword" placeholder="cpassword" required="required" />
</div>
<input type="submit" class="btn" value="Sign up" />
</form>
</div>
</div>
<div class="panels-container">
<div class="panel left-panel">
<div class="content">
<h3>New here ?</h3>
<p>
Lorem ipsum, dolor sit amet consectetur adipisicing elit. Debitis,
ex ratione. Aliquid!
</p>
<button class="btn transparent" id="sign-up-btn">
Sign up
</button>
</div>
<img src="img/log.svg" class="image" alt="" />
</div>
<div class="panel right-panel">
<div class="content">
<h3>One of us ?</h3>
<p>
Lorem ipsum dolor sit amet consectetur adipisicing elit. Nostrum
laboriosam ad deleniti.
</p>
<button class="btn transparent" id="sign-in-btn">
Sign in
</button>
</div>
<img src="img/register.svg" class="image" alt="" />
</div>
</div>
</div>
<script src="app.js"></script>
</body>
</html>