├── LICENSE ├── README.md ├── index.html ├── modules ├── authentication │ ├── controllers.js │ ├── services.js │ └── views │ │ └── login.html └── home │ ├── controllers.js │ └── views │ └── home.html └── scripts └── app.js /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cornflourblue/angular-authentication-example/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cornflourblue/angular-authentication-example/HEAD/README.md -------------------------------------------------------------------------------- /index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cornflourblue/angular-authentication-example/HEAD/index.html -------------------------------------------------------------------------------- /modules/authentication/controllers.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cornflourblue/angular-authentication-example/HEAD/modules/authentication/controllers.js -------------------------------------------------------------------------------- /modules/authentication/services.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cornflourblue/angular-authentication-example/HEAD/modules/authentication/services.js -------------------------------------------------------------------------------- /modules/authentication/views/login.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cornflourblue/angular-authentication-example/HEAD/modules/authentication/views/login.html -------------------------------------------------------------------------------- /modules/home/controllers.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cornflourblue/angular-authentication-example/HEAD/modules/home/controllers.js -------------------------------------------------------------------------------- /modules/home/views/home.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cornflourblue/angular-authentication-example/HEAD/modules/home/views/home.html -------------------------------------------------------------------------------- /scripts/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cornflourblue/angular-authentication-example/HEAD/scripts/app.js --------------------------------------------------------------------------------