
Ionic Firebase v3 Login System
Login system for your Ionic 1.3.x and Firebase 3.x mobile app
$0.00
Details
- Version:
- 1.0
- Ionic:
- 1.x
- Platforms:
- iOS, Android
- Released:
- 4 years ago
- Updated:
- 4 years ago
- Category:
- Starters
- Tags:
- ,
What you get?
- User Login
- User Signup
- Signup Verification Email
- Forgot / Reset Password
- Ionic Side Menu with profile picture
- Logout option in side menu
- Client Form Validation
- Firebase Server Form Validation
Pure Plug and Play Integration
This starter pack brings with all components that you will need to build a user module/login system in your Ionic 1.x app with powerful backend integration using Google Firebase 3.x.
- Download the starter zip
- Create a new Ionic project and replace the www folder with this one and run
ionc serve --lab
command from the CLI - Set your Firebase account settings in
/js/config.js
file and you are ready to go.
Firebase settings
Database Rules
javascript
{
"rules": {
".read": "auth != null",
".write": "auth != null"
}
}
You can obtain below settings under Google Firebase console AUTH > WEB SETUP (Look for this top right corner before ? icon)
javascript
.constant("CONFIG", {
"FIREBASE_API": 'ABCDEFGHIkghdPPPPPPPPPPPPP',
"FIREBASE_AUTH_DOMAIN": 'project-0000000000000.firebaseapp.com',
"FIREBASE_DB_URL": 'https://project-000000000.firebaseio.com',
"FIREBASE_STORAGE": 'project-0000000000.appspot.com',
"MESSAGE_SENDER_ID": '' // not needed for this starter
});