-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmain.cpp
290 lines (234 loc) · 6.29 KB
/
main.cpp
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
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
#include <iostream>
#include <fstream>
#include <sstream>
#include <string>
#include <regex> // validation
#include <vector>
using namespace std;
void signup();
void login();
void resetPassword();
bool isValidEmail(const string &userEmail);
bool checkUserExists(const string &userEmail);
string getPasswordForEmail(const string &userEmail);
bool checkPasswordLength(const string &userPassword);
// Email Validation
bool isValidEmail(const string &userEmail)
{
// Regular expression
const regex pattern(R"((\w+)(\.{0,1}(\w+))*@(\w+)(\.(\w+))+)");
return regex_match(userEmail, pattern);
}
string getPasswordForEmail(const string &userEmail)
{
ifstream infile("users_data.dat");
string line;
string storeEmail;
string storePass;
/*
istringstream iss(line); creates a stream from the string `line`, allowing you to extract individual data elements (e.g., email and password) using the stream extraction operator (`>>`).
*/
while (getline(infile, line))
{
istringstream iss(line);
iss >> storeEmail >> storePass;
if (storeEmail == userEmail)
{
return storePass;
}
}
return "";
}
bool checkUserExists(const string &userEmail)
{
ifstream infile("users_data.dat");
string line;
while (getline(infile, line))
{
if (line.find(userEmail) != string::npos)
{
return true;
}
}
return false;
}
bool checkPasswordLength(const string &userPassword)
{
int passMin = 8;
int passMax = 16;
if (userPassword.length() < passMin || userPassword.length() > passMax)
{
cout << "The password must be between " << passMin << " and " << passMax << " characters." << endl;
return false;
}
return true;
}
void signup()
{
string userEmail;
string userPassword;
string userConfirmPassword;
int passMin = 8;
int passMax = 16;
cout << "Welcome to sign up page." << endl;
while (true)
{
cout << "Enter email: ";
cin >> userEmail;
if (!isValidEmail(userEmail))
{
cout << "Please enter a valid email address." << endl;
continue;
}
if (checkUserExists(userEmail))
{
cout << "Email already exists. Please login." << endl;
}
break;
}
while (true)
{
cout << "Enter password: ";
cin >> userPassword;
if (!checkPasswordLength(userPassword))
{
continue;
}
checkPasswordLength(userPassword);
cout << "Enter confirm password: ";
cin >> userConfirmPassword;
if (userPassword != userConfirmPassword)
{
cout << "Failed to create your account." << endl;
continue;
}
else
{
cout << "Your account has been created successfully!" << endl;
break;
}
}
// Store data
ofstream outfile("users_data.dat", ios::app);
outfile << userEmail << " " << userPassword << endl;
outfile.close();
}
void login()
{
string userEmail;
string userPassword;
cout << "Welcome to login page." << endl;
cout << "Enter email: ";
cin >> userEmail;
cout << "Enter password: ";
cin >> userPassword;
if (checkUserExists(userEmail))
{
string storedPassword;
storedPassword = getPasswordForEmail(userEmail);
if (storedPassword == userPassword)
{
cout << "Login successful!" << endl;
}
else
{
cout << "Invalid password. Please try again." << endl;
}
}
else
{
cout << "Email not found. Please register first." << endl;
}
}
void resetPassword()
{
string userEmail;
string newPass;
string confirmPass;
bool userFound = false;
cout << "Password Reset" << endl;
cout << "Enter your email: ";
cin >> userEmail;
if (!checkUserExists(userEmail))
{
cout << "Email not found. Please register first." << endl;
return;
}
while (true)
{
cout << "Enter new password: ";
cin >> newPass;
if (!checkPasswordLength(newPass))
{
continue;
}
cout << "Confirm new password: ";
cin >> confirmPass;
if (newPass != confirmPass)
{
cout << "Passwords do not match. Try again." << endl;
continue;
}
break;
}
ifstream infile("users_data.dat");
ofstream tempFile("temp.dat");
string line;
string email;
string password;
while (getline(infile, line))
{
istringstream iss(line);
iss >> email >> password;
if (email == userEmail)
{
tempFile << email << " " << newPass <<endl;; // Write new password
userFound = true;
}
}
infile.close();
tempFile.close();
// Replace original file with updated file
remove("users_data.dat");
rename("temp.dat", "users_data.dat");
if (userFound)
{
cout << "Password reset successfully!" << endl;
}
}
int main()
{
int userInput;
bool isRunning = true;
cout << "---------------------------------------------" << endl;
cout << "| Login and Registeration System |" << endl;
cout << "---------------------------------------------" << endl;
while (isRunning)
{
cout << "1. Register" << endl;
cout << "2. Login" << endl;
cout << "3. Forgot Password" << endl;
cout << "4. Exit" << endl;
cout << "Select a valid option: ";
cin >> userInput;
switch (userInput)
{
case 1:
signup();
break;
case 2:
login();
break;
case 3:
resetPassword();
break;
case 4:
cout << "Thank you...!" << endl;
isRunning = false;
break;
default:
cout << "Please provide a valid selection. " << endl;
}
};
return 0;
}