Assignment 7: Login
Description
Most systems or web resources require some type of login. Access to the resources is only granted if the credentials entered are correct.
Task
Create a program that asks the user for password. Assume password is "admin". If the user successfully "logs in", send them to Computer Programming CTE website (www.baysidehs.net/CTE) otherwise shutdown their computer.
Post a screen capture of your program being executed a couple of times.
Post a screen capture of the code.
Question
1) How can we make it so the password is not case sensitive? Hint: Look at string methods.
tolower or toupper
2) How can you access a process from the computer?
Process.Start