[ ] 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 (pressing Cancel or going back a screen for example) will close out the login attempt. 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 attempt.
[ ] Once in the application, there should be a way to logout. After logging out, the application should return to the welcome / opening page.