PranovD / CS2340

MIT License
0 stars 0 forks source link

M4 Android application design #16

Open 6jaypatel opened 7 years ago

6jaypatel commented 7 years ago

Create your team's Android Project and Import into Git Create an opening or welcome screen which has options for Login and Registration. You may have some other method of differentiating login and registration, if you do not want an opening screen. If someone selects Login, then you should display a way to enter the user name and password. If someone requests login, you should check for the correct user name and password. For this first milestone, you may have a hard coded user with name "user" and password "pass" to check against. If the login matches user name / password then go to your application. Otherwise, notify of the bad login attempt. Canceling the login (press Cancel or going back a screen for example) will close out the login attempt , but no information is recorded and the application does not start up. Note here you are not explicitly required to have a cancel button, just a way to back out of the login. Once in the application, there should be a way to logout. After logging out, the application should return to the welcome / opening page.