├── .gitattributes ├── LICENSE ├── README.md ├── app.css ├── app ├── _directives │ ├── alert.component.html │ ├── alert.component.js │ ├── alert.component.js.map │ ├── alert.component.ts │ ├── index.js │ ├── index.js.map │ └── index.ts ├── _guards │ ├── auth.guard.js │ ├── auth.guard.js.map │ ├── auth.guard.ts │ ├── index.js │ ├── index.js.map │ └── index.ts ├── _helpers │ ├── fake-backend.js │ ├── fake-backend.js.map │ ├── fake-backend.ts │ ├── index.js │ ├── index.js.map │ ├── index.ts │ ├── jwt.interceptor.js │ ├── jwt.interceptor.js.map │ └── jwt.interceptor.ts ├── _models │ ├── index.js │ ├── index.js.map │ ├── index.ts │ ├── user.js │ ├── user.js.map │ └── user.ts ├── _services │ ├── alert.service.js │ ├── alert.service.js.map │ ├── alert.service.ts │ ├── authentication.service.js │ ├── authentication.service.js.map │ ├── authentication.service.ts │ ├── index.js │ ├── index.js.map │ ├── index.ts │ ├── user.service.js │ ├── user.service.js.map │ └── user.service.ts ├── app.component.html ├── app.component.js ├── app.component.js.map ├── app.component.ts ├── app.module.js ├── app.module.js.map ├── app.module.ts ├── app.routing.js ├── app.routing.js.map ├── app.routing.ts ├── home │ ├── home.component.html │ ├── home.component.js │ ├── home.component.js.map │ ├── home.component.ts │ ├── index.js │ ├── index.js.map │ └── index.ts ├── login │ ├── index.js │ ├── index.js.map │ ├── index.ts │ ├── login.component.html │ ├── login.component.js │ ├── login.component.js.map │ └── login.component.ts ├── main.js ├── main.js.map ├── main.ts └── register │ ├── index.js │ ├── index.js.map │ ├── index.ts │ ├── register.component.html │ ├── register.component.js │ ├── register.component.js.map │ └── register.component.ts ├── index.html ├── package.json ├── systemjs.config.js └── tsconfig.json /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WonderEagle/Angular_Simple_Registration/HEAD/.gitattributes -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WonderEagle/Angular_Simple_Registration/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WonderEagle/Angular_Simple_Registration/HEAD/README.md -------------------------------------------------------------------------------- /app.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WonderEagle/Angular_Simple_Registration/HEAD/app.css -------------------------------------------------------------------------------- /app/_directives/alert.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WonderEagle/Angular_Simple_Registration/HEAD/app/_directives/alert.component.html -------------------------------------------------------------------------------- /app/_directives/alert.component.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WonderEagle/Angular_Simple_Registration/HEAD/app/_directives/alert.component.js -------------------------------------------------------------------------------- /app/_directives/alert.component.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WonderEagle/Angular_Simple_Registration/HEAD/app/_directives/alert.component.js.map -------------------------------------------------------------------------------- /app/_directives/alert.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WonderEagle/Angular_Simple_Registration/HEAD/app/_directives/alert.component.ts -------------------------------------------------------------------------------- /app/_directives/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WonderEagle/Angular_Simple_Registration/HEAD/app/_directives/index.js -------------------------------------------------------------------------------- /app/_directives/index.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WonderEagle/Angular_Simple_Registration/HEAD/app/_directives/index.js.map -------------------------------------------------------------------------------- /app/_directives/index.ts: -------------------------------------------------------------------------------- 1 | export * from './alert.component'; -------------------------------------------------------------------------------- /app/_guards/auth.guard.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WonderEagle/Angular_Simple_Registration/HEAD/app/_guards/auth.guard.js -------------------------------------------------------------------------------- /app/_guards/auth.guard.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WonderEagle/Angular_Simple_Registration/HEAD/app/_guards/auth.guard.js.map -------------------------------------------------------------------------------- /app/_guards/auth.guard.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WonderEagle/Angular_Simple_Registration/HEAD/app/_guards/auth.guard.ts -------------------------------------------------------------------------------- /app/_guards/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WonderEagle/Angular_Simple_Registration/HEAD/app/_guards/index.js -------------------------------------------------------------------------------- /app/_guards/index.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WonderEagle/Angular_Simple_Registration/HEAD/app/_guards/index.js.map -------------------------------------------------------------------------------- /app/_guards/index.ts: -------------------------------------------------------------------------------- 1 | export * from './auth.guard'; -------------------------------------------------------------------------------- /app/_helpers/fake-backend.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WonderEagle/Angular_Simple_Registration/HEAD/app/_helpers/fake-backend.js -------------------------------------------------------------------------------- /app/_helpers/fake-backend.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WonderEagle/Angular_Simple_Registration/HEAD/app/_helpers/fake-backend.js.map -------------------------------------------------------------------------------- /app/_helpers/fake-backend.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WonderEagle/Angular_Simple_Registration/HEAD/app/_helpers/fake-backend.ts -------------------------------------------------------------------------------- /app/_helpers/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WonderEagle/Angular_Simple_Registration/HEAD/app/_helpers/index.js -------------------------------------------------------------------------------- /app/_helpers/index.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WonderEagle/Angular_Simple_Registration/HEAD/app/_helpers/index.js.map -------------------------------------------------------------------------------- /app/_helpers/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WonderEagle/Angular_Simple_Registration/HEAD/app/_helpers/index.ts -------------------------------------------------------------------------------- /app/_helpers/jwt.interceptor.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WonderEagle/Angular_Simple_Registration/HEAD/app/_helpers/jwt.interceptor.js -------------------------------------------------------------------------------- /app/_helpers/jwt.interceptor.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WonderEagle/Angular_Simple_Registration/HEAD/app/_helpers/jwt.interceptor.js.map -------------------------------------------------------------------------------- /app/_helpers/jwt.interceptor.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WonderEagle/Angular_Simple_Registration/HEAD/app/_helpers/jwt.interceptor.ts -------------------------------------------------------------------------------- /app/_models/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WonderEagle/Angular_Simple_Registration/HEAD/app/_models/index.js -------------------------------------------------------------------------------- /app/_models/index.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WonderEagle/Angular_Simple_Registration/HEAD/app/_models/index.js.map -------------------------------------------------------------------------------- /app/_models/index.ts: -------------------------------------------------------------------------------- 1 | export * from './user'; -------------------------------------------------------------------------------- /app/_models/user.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WonderEagle/Angular_Simple_Registration/HEAD/app/_models/user.js -------------------------------------------------------------------------------- /app/_models/user.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WonderEagle/Angular_Simple_Registration/HEAD/app/_models/user.js.map -------------------------------------------------------------------------------- /app/_models/user.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WonderEagle/Angular_Simple_Registration/HEAD/app/_models/user.ts -------------------------------------------------------------------------------- /app/_services/alert.service.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WonderEagle/Angular_Simple_Registration/HEAD/app/_services/alert.service.js -------------------------------------------------------------------------------- /app/_services/alert.service.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WonderEagle/Angular_Simple_Registration/HEAD/app/_services/alert.service.js.map -------------------------------------------------------------------------------- /app/_services/alert.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WonderEagle/Angular_Simple_Registration/HEAD/app/_services/alert.service.ts -------------------------------------------------------------------------------- /app/_services/authentication.service.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WonderEagle/Angular_Simple_Registration/HEAD/app/_services/authentication.service.js -------------------------------------------------------------------------------- /app/_services/authentication.service.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WonderEagle/Angular_Simple_Registration/HEAD/app/_services/authentication.service.js.map -------------------------------------------------------------------------------- /app/_services/authentication.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WonderEagle/Angular_Simple_Registration/HEAD/app/_services/authentication.service.ts -------------------------------------------------------------------------------- /app/_services/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WonderEagle/Angular_Simple_Registration/HEAD/app/_services/index.js -------------------------------------------------------------------------------- /app/_services/index.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WonderEagle/Angular_Simple_Registration/HEAD/app/_services/index.js.map -------------------------------------------------------------------------------- /app/_services/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WonderEagle/Angular_Simple_Registration/HEAD/app/_services/index.ts -------------------------------------------------------------------------------- /app/_services/user.service.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WonderEagle/Angular_Simple_Registration/HEAD/app/_services/user.service.js -------------------------------------------------------------------------------- /app/_services/user.service.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WonderEagle/Angular_Simple_Registration/HEAD/app/_services/user.service.js.map -------------------------------------------------------------------------------- /app/_services/user.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WonderEagle/Angular_Simple_Registration/HEAD/app/_services/user.service.ts -------------------------------------------------------------------------------- /app/app.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WonderEagle/Angular_Simple_Registration/HEAD/app/app.component.html -------------------------------------------------------------------------------- /app/app.component.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WonderEagle/Angular_Simple_Registration/HEAD/app/app.component.js -------------------------------------------------------------------------------- /app/app.component.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WonderEagle/Angular_Simple_Registration/HEAD/app/app.component.js.map -------------------------------------------------------------------------------- /app/app.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WonderEagle/Angular_Simple_Registration/HEAD/app/app.component.ts -------------------------------------------------------------------------------- /app/app.module.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WonderEagle/Angular_Simple_Registration/HEAD/app/app.module.js -------------------------------------------------------------------------------- /app/app.module.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WonderEagle/Angular_Simple_Registration/HEAD/app/app.module.js.map -------------------------------------------------------------------------------- /app/app.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WonderEagle/Angular_Simple_Registration/HEAD/app/app.module.ts -------------------------------------------------------------------------------- /app/app.routing.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WonderEagle/Angular_Simple_Registration/HEAD/app/app.routing.js -------------------------------------------------------------------------------- /app/app.routing.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WonderEagle/Angular_Simple_Registration/HEAD/app/app.routing.js.map -------------------------------------------------------------------------------- /app/app.routing.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WonderEagle/Angular_Simple_Registration/HEAD/app/app.routing.ts -------------------------------------------------------------------------------- /app/home/home.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WonderEagle/Angular_Simple_Registration/HEAD/app/home/home.component.html -------------------------------------------------------------------------------- /app/home/home.component.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WonderEagle/Angular_Simple_Registration/HEAD/app/home/home.component.js -------------------------------------------------------------------------------- /app/home/home.component.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WonderEagle/Angular_Simple_Registration/HEAD/app/home/home.component.js.map -------------------------------------------------------------------------------- /app/home/home.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WonderEagle/Angular_Simple_Registration/HEAD/app/home/home.component.ts -------------------------------------------------------------------------------- /app/home/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WonderEagle/Angular_Simple_Registration/HEAD/app/home/index.js -------------------------------------------------------------------------------- /app/home/index.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WonderEagle/Angular_Simple_Registration/HEAD/app/home/index.js.map -------------------------------------------------------------------------------- /app/home/index.ts: -------------------------------------------------------------------------------- 1 | export * from './home.component'; -------------------------------------------------------------------------------- /app/login/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WonderEagle/Angular_Simple_Registration/HEAD/app/login/index.js -------------------------------------------------------------------------------- /app/login/index.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WonderEagle/Angular_Simple_Registration/HEAD/app/login/index.js.map -------------------------------------------------------------------------------- /app/login/index.ts: -------------------------------------------------------------------------------- 1 | export * from './login.component'; -------------------------------------------------------------------------------- /app/login/login.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WonderEagle/Angular_Simple_Registration/HEAD/app/login/login.component.html -------------------------------------------------------------------------------- /app/login/login.component.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WonderEagle/Angular_Simple_Registration/HEAD/app/login/login.component.js -------------------------------------------------------------------------------- /app/login/login.component.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WonderEagle/Angular_Simple_Registration/HEAD/app/login/login.component.js.map -------------------------------------------------------------------------------- /app/login/login.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WonderEagle/Angular_Simple_Registration/HEAD/app/login/login.component.ts -------------------------------------------------------------------------------- /app/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WonderEagle/Angular_Simple_Registration/HEAD/app/main.js -------------------------------------------------------------------------------- /app/main.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WonderEagle/Angular_Simple_Registration/HEAD/app/main.js.map -------------------------------------------------------------------------------- /app/main.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WonderEagle/Angular_Simple_Registration/HEAD/app/main.ts -------------------------------------------------------------------------------- /app/register/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WonderEagle/Angular_Simple_Registration/HEAD/app/register/index.js -------------------------------------------------------------------------------- /app/register/index.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WonderEagle/Angular_Simple_Registration/HEAD/app/register/index.js.map -------------------------------------------------------------------------------- /app/register/index.ts: -------------------------------------------------------------------------------- 1 | export * from './register.component'; -------------------------------------------------------------------------------- /app/register/register.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WonderEagle/Angular_Simple_Registration/HEAD/app/register/register.component.html -------------------------------------------------------------------------------- /app/register/register.component.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WonderEagle/Angular_Simple_Registration/HEAD/app/register/register.component.js -------------------------------------------------------------------------------- /app/register/register.component.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WonderEagle/Angular_Simple_Registration/HEAD/app/register/register.component.js.map -------------------------------------------------------------------------------- /app/register/register.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WonderEagle/Angular_Simple_Registration/HEAD/app/register/register.component.ts -------------------------------------------------------------------------------- /index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WonderEagle/Angular_Simple_Registration/HEAD/index.html -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WonderEagle/Angular_Simple_Registration/HEAD/package.json -------------------------------------------------------------------------------- /systemjs.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WonderEagle/Angular_Simple_Registration/HEAD/systemjs.config.js -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WonderEagle/Angular_Simple_Registration/HEAD/tsconfig.json --------------------------------------------------------------------------------