You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
18 lines
422 B
18 lines
422 B
#include "Msae.h"
|
|
|
|
int login(void)
|
|
{
|
|
char id,mdp[31]="mettez20svp";
|
|
while(id!='A' && id!='a' && id!='U' && id!='u')
|
|
{
|
|
printf("################################################################\n\tBienvenue!\n\n\n\tSouhaitez-vous vous connecter en tant qu'utilisateur ou administeur? (U/A)\t");
|
|
scanf("%c%*c",&id);
|
|
if(id=='q')
|
|
return -1;
|
|
}
|
|
if(id=='A' || id=='a')
|
|
return 1;
|
|
else return 0;
|
|
system("clear");
|
|
}
|