@echo off color f0 title account set/p acd=your name: :ent color 0f cls goto news :wel cls color 0f < %acd%.sav ( set /p ps= set /p acc= ) echo. echo. echo. echo. echo. echo ²²²²²²²²²²²²²²²²²²²²²²²²²²²²²²²²²²²²²²²²²²²²²²²²²²²²²²²²²² echo ² ² echo ² ² echo ² ² echo ² welcome ² echo ² ² echo ² press 1 to login to your account ² echo ² ² echo ² press 2 to delete your account ² echo ² ² echo ²²²²²²²²²²²²²²²²²²²²²²²²²²²²²²²²²²²²²²²²²²²²²²²²²²²²²²²²²² choice /c 12 /n if %errorlevel% == 1 goto log if %errorlevel% == 2 goto del :new color 0a cls title new account set /p acc=your name: echo. set /p ps=password: ( echo %ps% echo %acc% ) > %acd%.sav cls echo Account made succesfully! pause goto logd :del cls color 0f set /p psc=enter password: if %psc% == %ps% goto deld if %psc% neq %ps% goto wri :wri cls color 0c echo wrong password! timeout/t 01>nul goto del :deld color 0c echo are you sure you want to delete your account? choice /c ny if %errorlevel% == 1 goto wel if %errorlevel% == 2 goto xer :xer del %acd%.sav del %acd%note.sav cls color 0a echo Account deleted succesfully! pause goto ent :log color 0f cls title login set /p psi=password: if %psi% == %ps% goto logd if %psi% neq %ps% goto wro :wro cls color 0c echo wrong password! timeout/t 01>nul cls color 0f set /p psi=password: if %psi% == %ps% goto logd if %psi% neq %ps% goto wro :logd cls color fb title welcome %acc% set d=%date% echo. echo. echo. echo. echo. echo ²²²²²²²²²²²²²²²²²²²²²²²²²²²²²²²²²²²²²²²²²²²²²²²²²²²²²²²²²²²²² echo ² ² echo ² ² echo ² ² echo ² ² echo ² ² echo welcome %acc% echo ² ² echo ² today is %d% ² echo ² ² echo ² ² echo ² ² echo ² ² echo ² press 1 to go to start ² echo ² ² echo ² press 2 to exit ² echo ² ² echo ² press 3 to view/edit notes ² echo ² ² echo ²²²²²²²²²²²²²²²²²²²²²²²²²²²²²²²²²²²²²²²²²²²²²²²²²²²²²²²²²²²²² choice /c 123 /n if %errorlevel% == 1 goto ent if %errorlevel% == 3 goto note exit :note color f0 cls if exist %acd%note.sav goto yep echo. echo. echo. echo You can put your notes here echo IMPORTANT: max. notes capacity is 9 lines echo all lines have to be filled with something echo or it will cause the file to shut down echo. echo. set/p q= set/p w= set/p e= set/p r= set/p t= set/p y= set/p u= set/p i= set/p o= ( echo %q% echo %w% echo %e% echo %r% echo %t% echo %y% echo %u% echo %i% echo %o% ) > %acd%note.sav echo. echo. echo. echo press 1 to go to your account echo press 2 to exit choice/c 12 /n if %errorlevel% == 1 goto logd exit :yep color f0 < %acd%note.sav ( set /p q= set /p w= set /p e= set /p r= set /p t= set /p y= set /p u= set /p i= set /p o= ) echo These are your notes echo. echo. echo. echo %q% echo %w% echo %e% echo %r% echo %t% echo %y% echo %u% echo %i% echo %o% echo. echo. echo press 1 to go to your account echo press 2 to edit notes echo press 3 to exit choice /c 123 /n if %errorlevel% == 1 goto logd if %errorlevel% == 2 goto edt exit :edt color f0 cls echo. echo. echo. echo 1) %q% echo 2) %w% echo 3) %e% echo 4) %r% echo 5) %t% echo 6) %y% echo 7) %u% echo 8) %i% echo 9) %o% echo. echo. :ett echo which line do you want to edit? choice /c 123456789 if %errorlevel% == 1 set amn=q if %errorlevel% == 2 set amn=w if %errorlevel% == 3 set amn=e if %errorlevel% == 4 set amn=r if %errorlevel% == 5 set amn=t if %errorlevel% == 6 set amn=y if %errorlevel% == 7 set amn=u if %errorlevel% == 8 set amn=i if %errorlevel% == 9 set amn=o set/p %amn%= ( echo %q% echo %w% echo %e% echo %r% echo %t% echo %y% echo %u% echo %i% echo %o% ) > %acd%note.sav cls echo These are you notes echo. echo. echo. echo %q% echo %w% echo %e% echo %r% echo %t% echo %y% echo %u% echo %i% echo %o% echo. echo. echo press 1 to go to your account echo press 2 to edit another line echo press 3 to exit choice /c 123 /n if %errorlevel% == 1 goto ent if %errorlevel% == 2 goto ett if %errorlevel% == 3 exit :news color 0f if exist %acd%.sav goto wel echo. echo. echo. echo. echo. echo ²²²²²²²²²²²²²²²²²²²²²²²²²²²²²²²²²²²²²²²²²²²²²²²²²²²²²²²²²²²²² echo ² ² echo ² press 1 to make a new account ² echo ² ² echo ² press 2 to exit ² echo ² ² echo ²²²²²²²²²²²²²²²²²²²²²²²²²²²²²²²²²²²²²²²²²²²²²²²²²²²²²²²²²²²²² choice /c 12 /n if %errorlevel% == 1 goto new if %errorlevel% == 2 exit