Advertisement
Guest User

Untitled

a guest
Jun 14th, 2017
76
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.88 KB | None | 0 0
  1. SCRIPT 1------FIRST SCREEN
  2.  
  3. @echo off
  4. title Website Archives...
  5. @echo Hello, welcome to the Website Archives!
  6. @echo Please input the word 'Login' below and you'll be taken into a new window!
  7. @echo --------------------------------------------------------------------------
  8. set /p option=
  9. if '%option%'=='Login' start Login.bat
  10.  
  11. SCRIPT 2---------LOGIN SCREEN
  12.  
  13. @echo off
  14. title Login Screen
  15. @echo Welcome to the Login Screen!
  16. @echo Please input your given Username and Password below!
  17. @echo ----------------------------------------------------
  18. @echo Username:
  19. set /p option=
  20. if '%option%'=='Latem5' echo Password:
  21.  
  22. set /p option=
  23. if '%option%'=='D3vine' echo Successfully Logged in!
  24. @pause
  25. call WebsiteArchiveMain.bat
  26.  
  27. SCRIPT 3----------MAIN SCREEN (Still being worked on, here is where its echoing)
  28.  
  29. @echo off
  30.  
  31. title Website Archive Main Page
  32. color F2
  33. @echo Welcome to the Website Archive Main Page!
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement