Project Coimbra was developed by independent volunteers at Microsoft with the Service Owners of Enable Ireland Sandyford. Inspired by their love of music and how it is such a central part of the service, volunteers at Microsoft developed this inclusive music software and have generously allowed us to share it with the world.
MIT License
4
stars
5
forks
source link
Adding login / signup pages using SQLite database #58
[New login and signup pages have been added to the application. On startup, you will be navigated to the login page. Once you enter a nickname that is present in your local User table in the SQLite database, you will be sent to the first page of the app (skipping the terms page). If the nickname does not exist, you can click the link to navigate to the "Create Account" page. Here you must enter a name that has not been already added. You will be directly to the Terms page if you enter unique name.
I'm using a table called User in the SQLite database. I added a new project which deals with accessing the database called DataAccessLibrary.
There is very simple validation (checks whether nickname exists in DB or not), this can be updated and improved at later stage.
TODO: I will add a menu with a "Sign out" button so we can navigate back to login page at any stage.
[New login and signup pages have been added to the application. On startup, you will be navigated to the login page. Once you enter a nickname that is present in your local User table in the SQLite database, you will be sent to the first page of the app (skipping the terms page). If the nickname does not exist, you can click the link to navigate to the "Create Account" page. Here you must enter a name that has not been already added. You will be directly to the Terms page if you enter unique name.
I'm using a table called User in the SQLite database. I added a new project which deals with accessing the database called DataAccessLibrary.
There is very simple validation (checks whether nickname exists in DB or not), this can be updated and improved at later stage.
TODO: I will add a menu with a "Sign out" button so we can navigate back to login page at any stage.
Login page:
Signup page: