├── .gitignore ├── Procfile ├── README.md ├── app ├── index.html ├── lib │ ├── loading-bar.css │ ├── loading-bar.js │ └── ngStorage.js ├── partials │ ├── home.html │ ├── me.html │ ├── signin.html │ └── signup.html └── scripts │ ├── app.js │ ├── controllers.js │ └── services.js ├── client.js └── package.json /.gitignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | dist 3 | .c9 4 | .tmp 5 | .sass-cache 6 | bower_components 7 | lib-cov 8 | *.seed 9 | *.log 10 | *.csv 11 | *.dat 12 | *.out 13 | *.pid 14 | *.gz 15 | *.idea 16 | *.idea/ 17 | .idea/ 18 | .bower-cache/* 19 | .bower-registry/* 20 | public/bower/* 21 | config/runtime.json 22 | pids 23 | logs 24 | results 25 | npm-debug.log 26 | -------------------------------------------------------------------------------- /Procfile: -------------------------------------------------------------------------------- 1 | web: node client.js -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | token-based-auth-frontend 2 | ========================= 3 | 4 | Token Based Authentication Frontend Project Written in AngularJS 5 | -------------------------------------------------------------------------------- /app/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 |
4 | 5 | 6 | 7 | 8 | 9 | 10 |In this demo you can see following actions;
9 |{{myDetails.data.email}}
9 |{{myDetails.data.password}}
10 |