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
|
#include<iostream>
#include<fstream>
#include<stdio.h>
#include<conio.h>
#include<string>
using namespace std;
class Admin{
public:
Admin(){
}
void Read(){
}
void Write(){
}
};
class NewUser{
public:
string password,id,trys;
char p[20];
void menu(){
cout<<"Please give an id\n";
cin>>id;
cout<<"Please give your password\n"<<id<<endl;
//password="";
char c = ' ';
password="";
while(c != 13)
{
c = getch();
if(c!=13){
password += c;
cout << "*";}
}
int length=password.length();
int l2=password.copy(p,length,0);
p[l2]='\0';
cout<<"the new user class "<<p;
}
string returns(){
return trys;
}
};
class User{
public:
char id[10], password[20];
void Read(){
}
void Write(){
}
void menu(){
cout<<"Please select your menu\n";
int m;
cin>>m;
switch(m){
case 1:
Read();
break;
case 2:
Write();
break;
default:
cout<<"wrong option\n";
}
}
};
void CheckingPrimaryFiles(){
ifstream ifs("user.txt",ios::binary);
if(!ifs)
{
ofstream of("user.txt",ios::binary|ios::app);
of.close();
}
ifs.close();
ifstream a("Admin.txt");
if(!a){
ofstream asd("Admin.txt");
cout<<"FIRST TIME EXECUTION:\nPlease set a password\n";
//char password[20],test[20];
string password = "";
char c = ' ';
while(c != 13)
{
c = getch();
if(c!=13){
password += c;
cout << "*";}
}
asd<<password;
asd.close();
}
a.close();
}
int PasswordChecker(int a,string password,string id){
//char p[20],test[20];
ifstream ifs("Admin.txt");
ifstream obj("user.txt",ios::binary);
//string pass = "";
NewUser am;
if(a==0){
int i=0;
string check;
ifs>>check;
cout<<check;
if(check==password){
return 1;
ifs.close();}
else{
return 0;
ifs.close();}
}
else
{
cout<<endl<<id<<" "<<password;
while(!obj.eof()){
obj.read((char*)&am, sizeof(NewUser));
cout<<"\nrun\n"<<am.id<<endl;
if(id==am.id){
//cout<<"enter password\n";
cout<<"Id reached\n";
if(password==am.p)
{ cout<<"password correct";
return 1;
}else{
string temp=am.p;
cout<<"I am here\n"<<temp;
return 0;
}
//cout<<pass<<" and "<<us.password;
}else
continue;
}
}
//cout<<pass;
obj.close();
return 0;
}
int getPassword(int a,string id=""){
cout<<"Please enter your password\n";
//char password[20],test[20];
string password = "";
char c = ' ';
while(c != 13)
{
c = getch();
if(c!=13){
password += c;
cout << "*";}
}
if(PasswordChecker(a,password,id))
return 1;
else
return 0;
}
int main(){
CheckingPrimaryFiles();
string id;
cout<<"Please choose profile\n";
int profile;
cin>>profile;
switch(profile){
//admin
case 1:
cout<<"Please give the password\n";
if(getPassword(0)){
cout<<"Welcome Tanmay\n";
Admin admin;
}
else
cout<<"wrong password\n";
break;
//User
case 2:
cout<<"Please provide id\n";
cin>>id;
if(getPassword(profile,id)){
User user;
user.menu();
}else
cout<<"wrong id and password\n";
break;
//New user
case 3:
//cout<<"Please give your id \n";
ofstream n;
n.open("user.txt",ios::app|ios::binary);
NewUser newuser;
newuser.menu();
n.write((char*)&newuser,sizeof(NewUser));
n.close();
}
return 0;
}
|