Can not login with auth0 lock
Clash Royale CLAN TAG #URR8PPP Can not login with auth0 lock I use auth0 to create function login with angularjs. When I input email and password login success not return message and redirect to login page again. I check data return cannot see 'id_token'. app.js include config auth auth.service.js (function () { 'use strict'; angular.module('BlurAdmin') .service('authService', authService); authService.$inject = ['lock', '$location']; function authService(lock, $location) { function login() { // Display the Lock widget using the // instance initialized in the app.js config lock.show(); } function logout() { // Remove tokens and expiry time from localStorage localStorage.removeItem('access_token'); localStorage.removeItem('id_token'); localStorage.removeItem('expires_at'); $...