We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Branch: HelfenKannJeder/come2help-web: feature/authentication-logic
TODOs
clientId
resolve
skipIfLoggedIn
loginRequired
Default configuration of satellizer for login with Email and Password
$authProvider.httpInterceptor = function() { return true; }, $authProvider.withCredentials = true; $authProvider.tokenRoot = null; $authProvider.cordova = false; $authProvider.baseUrl = '/'; $authProvider.loginUrl = '/auth/login'; $authProvider.signupUrl = '/auth/signup'; $authProvider.unlinkUrl = '/auth/unlink/'; $authProvider.tokenName = 'token'; $authProvider.tokenPrefix = 'satellizer'; $authProvider.authHeader = 'Authorization'; $authProvider.authToken = 'Bearer'; $authProvider.storageType = 'localStorage';
The text was updated successfully, but these errors were encountered:
The login data is submitted in plain text. Is that a problem?
{"email":"[email protected]","password":"asdasd"}
Sorry, something went wrong.
We’re using SSL, so I guess not. I thought about it and I’m pretty sure not security gain can be achieved by hashing the password on the client side.
Plus, if that puts your mind at ease, Facebook submits passwords in plain text too ;)
No branches or pull requests
Branch: HelfenKannJeder/come2help-web: feature/authentication-logic
TODOs
clientId
for Facebook, Google Plus, Instagram, etc. (optional. Does @valentinz have specific accounts? HowTo)resolve
to routes (RouteProvider doc, Example)skipIfLoggedIn
loginRequired
Send POST request on login form submitsatellizer does that alreadyDefault configuration of satellizer for login with Email and Password
The text was updated successfully, but these errors were encountered: