Write a bash script that prompts the user to input a password and keeps prompting until the correct password is entered using a while loop. The correct password should be predefined in the script.
(The correct password is secret123
.)
$ ./password_prompt.sh
Enter the password: wrongpassword
Incorrect password. Try again.
Enter the password: secret123
Password accepted.