-
Notifications
You must be signed in to change notification settings - Fork 0
/
PasswordNV.cpp
170 lines (163 loc) · 5.01 KB
/
PasswordNV.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
#include "PasswordNV.h"
#include<iostream>
#include<fstream>
#include<sstream>
#include<string>
#include<conio.h>
#include<Windows.h>
using namespace std;
void TextColor7(int x){
HANDLE color = GetStdHandle(STD_OUTPUT_HANDLE);
SetConsoleTextAttribute( color , x );
}
void passInput(string &x){
x="";
char c;
do
{
c = _getch();
if (c == 13 || c == ' ' )
{
break;
}
if((c==8 || c==127) && !x.empty())
{
cout<<"\b \b";
x.erase(x.size()-1);
}
else{ x.push_back(c);
_putch('*');}
}while(c!=13 || c!=' ');
}
std::string Staff(){
string _Username,_Pass,username,pass;
ifstream in;
bool found=false;
in.open("Password/staff.txt");
cout<<"\n\n\n";
cout<<"\t\t\t\t\t\t\t+-------------------+"<<endl;
cout<<"\t\t\t\t\t\t\t|";TextColor7(14);cout<<" -LOGIN NOW- ";TextColor7(7);cout<<"|"<<endl;
cout<<"\t\t\t\t\t\t\t+-------------------+"<<endl;
cout<<"\n\n";
cout<<"\t\t\t\t\t\tUsername : ";cin>>_Username;
cout<<"\n";
cout<<"\t\t\t\t\t\tPassword : ";
passInput(_Pass);
while(in>>username>>pass){
if (_Username==username&&pass==_Pass) {
found =true;
break;}
}
if (found)
{
TextColor7(10);cout<<"\n\n\t\t\t\t\t\t\tLogged in successfully!\n";TextColor7(7);
}
else {
TextColor7(12);cout<<"\n\n\t\t\t\t\t\t Username or Password is incorrect";TextColor7(7);
cout<<"\n\n\t\t\t\t\t\t\t";TextColor7(14);cout<<" -Notification-";TextColor7(7);
cout<<"\n\t\t\t\t\t\t\t+--------------------+";
cout<<"\n\t\t\t\t\t\t\t| 1.Login again |";
cout<<"\n\t\t\t\t\t\t\t| 2.Exit |";
cout<<"\n\t\t\t\t\t\t\t+--------------------+";
cout<<"\n\n\t\t\t\t\t\tYour choice : ";
char d;cin>>d;
switch(d){
case '1':{
system("cls");
Staff();
break;
}
case '2':{
exit(0);
break;
}
}
}
in.close();
return _Username;
}
void resetPassNV(const string &username){
string _Pass,_Username,pass,newpass,data;
ifstream on;
on.open("Password/staff.txt");
while(on>>_Username>>pass){
if (username==_Username) break;
}
on.close();
Reset:
cout<<"\n\n\n";
cout<<"\t\t\t\t\t\t\t+--------------------------+"<<endl;
cout<<"\t\t\t\t\t\t\t|";TextColor7(14);cout<<" -RESET PASSWORD- ";TextColor7(7);cout<<"|"<<endl;
cout<<"\t\t\t\t\t\t\t+--------------------------+"<<endl;
cout<<"\n\n\t\t\t\t\tPlease input current password : ";
passInput(_Pass);
if (_Pass==pass){
datlai:
data="";
newpass="";
cout<<"\n\n\t\t\t\t\t\t\t New password : ";
passInput(newpass);
cout<<"\n\n\t\t\t\t\t Retype your new password : ";
passInput(data);
if (newpass==data){
TextColor7(10);cout<<"\n\n\t\t\t\t\t\t\tSuccessful change\n\n";TextColor7(7);
ofstream out;
out.open("Password/temp.txt",ios::out);
ifstream in;
in.open("Password/staff.txt");
while(in>>_Username>>pass){
if (username==_Username){
out<<_Username<<" "<<newpass<<endl;
}
else out<<_Username<<" "<<pass<<endl;
}
system("pause");
in.close();
out.close();
remove("Password/staff.txt");
rename("Password/temp.txt","Password/staff.txt");
}
else{
TextColor7(12);cout<<"\n\n\t\t\t\t\t\tNew password is incorrect,try again?";TextColor7(7);
cout<<"\n\n\t\t\t\t\t\t\t";TextColor7(14);cout<<" -Notification-";TextColor7(7);
cout<<"\n\t\t\t\t\t\t\t +--------------------+";
cout<<"\n\t\t\t\t\t\t\t | 1.Yes |";
cout<<"\n\t\t\t\t\t\t\t | 2.No |";
cout<<"\n\t\t\t\t\t\t\t +--------------------+";
cout<<"\n\n\t\t\t\t\t\tYour choice ";
char d; cin>>d;
switch(d){
case '1':{
system("cls");
goto Reset;
break;
}
case '2':{
system("cls");//thoat ra
break;
}
}
}
}
else{
TextColor7(12);cout<<"\n\n\t\t\t\t\t\t Incorrect Password";TextColor7(7);
cout<<"\n\n\t\t\t\t\t\t\t";TextColor7(14);cout<<" -Notification-";TextColor7(7);
cout<<"\n\t\t\t\t\t\t\t +---------------------+";
cout<<"\n\t\t\t\t\t\t\t | 1.Try again |";
cout<<"\n\t\t\t\t\t\t\t | 2.Return |";
cout<<"\n\t\t\t\t\t\t\t +---------------------+";
cout<<"\n\n\t\t\t\t\t\tYour choice : ";
char t; cin>>t;
switch(t){
case '1':{
system("cls");
goto Reset;
break;
}
case '2':{
system("exit");
break;
}
}
}
}