home *** CD-ROM | disk | FTP | other *** search
- program SysLock;
-
- uses Crt;
-
- var pass : string;
-
- label 3, 5, 10;
-
- begin
- 3: clrscr;
- textcolor(white);
- writeln;
- writeln;
- writeln;
- writeln(' ╔════════════════════════════════════╗');
- writeln(' ║ * SYSTEM LOCKED * ║');
- writeln(' ╟────────────────────────────────────╢');
- writeln(' ║ Enter the password to unlock the ║');
- writeln(' ║ system. ║');
- writeln(' ╚════════════════════════════════════╝');
- write (' Password: ');
- textcolor(black);
- readln(pass);
- if pass = ('password ') then goto 10;
- if pass <> ('password ') then goto 5;
- 5: writeln;
- textcolor(20);
- write(' Are you trying to break into the system?');
- textcolor(white);
- delay(3000);
- goto 3;
- readln;
- 10: end.