├── .firebaserc ├── README.md ├── app ├── app.js ├── config │ ├── routes.js │ └── startup.js ├── controllers │ ├── nav-controller.js │ └── user-controller.js ├── services │ ├── broadcast-service.js │ └── profile-service.js └── views │ ├── account.html │ ├── account │ ├── achievements-panel.html │ ├── change-password.html │ ├── delete-user.html │ ├── error-panel.html │ ├── forgot-password.html │ ├── info-panel.html │ ├── profile-display.html │ ├── profile-edit.html │ ├── profile-image.html │ ├── sign-in-social.html │ ├── sign-in.html │ ├── sign-out.html │ ├── sign-up.html │ ├── signed-in-menu.html │ ├── signed-out-menu.html │ └── validate-panel.html │ ├── footer.html │ ├── home.html │ ├── home │ ├── fork-me-button.html │ ├── left-panel.html │ ├── right-panel.html │ └── try-me-button.html │ └── nav.html ├── assets ├── css │ ├── app.css │ ├── bootstrap-social.css │ ├── bootstrap-theme.min.css │ ├── bootstrap.min.css │ └── jumbotron-narrow.css ├── font │ ├── glyphicons-halflings-regular.eot │ ├── glyphicons-halflings-regular.svg │ ├── glyphicons-halflings-regular.ttf │ ├── glyphicons-halflings-regular.woff │ └── glyphicons-halflings-regular.woff2 ├── img │ └── user-profile.png └── lib │ ├── angular-messages.min.js │ ├── angular-route.min.js │ ├── angular-sanitize.min.js │ ├── angular.min.js │ ├── bootstrap.min.js │ └── jquery-2.2.0.min.js ├── firebase-rules.txt ├── firebase.json └── index.html /.firebaserc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cliffhall/angular-firebase-user-profiles/HEAD/.firebaserc -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cliffhall/angular-firebase-user-profiles/HEAD/README.md -------------------------------------------------------------------------------- /app/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cliffhall/angular-firebase-user-profiles/HEAD/app/app.js -------------------------------------------------------------------------------- /app/config/routes.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cliffhall/angular-firebase-user-profiles/HEAD/app/config/routes.js -------------------------------------------------------------------------------- /app/config/startup.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cliffhall/angular-firebase-user-profiles/HEAD/app/config/startup.js -------------------------------------------------------------------------------- /app/controllers/nav-controller.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cliffhall/angular-firebase-user-profiles/HEAD/app/controllers/nav-controller.js -------------------------------------------------------------------------------- /app/controllers/user-controller.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cliffhall/angular-firebase-user-profiles/HEAD/app/controllers/user-controller.js -------------------------------------------------------------------------------- /app/services/broadcast-service.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cliffhall/angular-firebase-user-profiles/HEAD/app/services/broadcast-service.js -------------------------------------------------------------------------------- /app/services/profile-service.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cliffhall/angular-firebase-user-profiles/HEAD/app/services/profile-service.js -------------------------------------------------------------------------------- /app/views/account.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cliffhall/angular-firebase-user-profiles/HEAD/app/views/account.html -------------------------------------------------------------------------------- /app/views/account/achievements-panel.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cliffhall/angular-firebase-user-profiles/HEAD/app/views/account/achievements-panel.html -------------------------------------------------------------------------------- /app/views/account/change-password.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cliffhall/angular-firebase-user-profiles/HEAD/app/views/account/change-password.html -------------------------------------------------------------------------------- /app/views/account/delete-user.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cliffhall/angular-firebase-user-profiles/HEAD/app/views/account/delete-user.html -------------------------------------------------------------------------------- /app/views/account/error-panel.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cliffhall/angular-firebase-user-profiles/HEAD/app/views/account/error-panel.html -------------------------------------------------------------------------------- /app/views/account/forgot-password.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cliffhall/angular-firebase-user-profiles/HEAD/app/views/account/forgot-password.html -------------------------------------------------------------------------------- /app/views/account/info-panel.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cliffhall/angular-firebase-user-profiles/HEAD/app/views/account/info-panel.html -------------------------------------------------------------------------------- /app/views/account/profile-display.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cliffhall/angular-firebase-user-profiles/HEAD/app/views/account/profile-display.html -------------------------------------------------------------------------------- /app/views/account/profile-edit.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cliffhall/angular-firebase-user-profiles/HEAD/app/views/account/profile-edit.html -------------------------------------------------------------------------------- /app/views/account/profile-image.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cliffhall/angular-firebase-user-profiles/HEAD/app/views/account/profile-image.html -------------------------------------------------------------------------------- /app/views/account/sign-in-social.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cliffhall/angular-firebase-user-profiles/HEAD/app/views/account/sign-in-social.html -------------------------------------------------------------------------------- /app/views/account/sign-in.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cliffhall/angular-firebase-user-profiles/HEAD/app/views/account/sign-in.html -------------------------------------------------------------------------------- /app/views/account/sign-out.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cliffhall/angular-firebase-user-profiles/HEAD/app/views/account/sign-out.html -------------------------------------------------------------------------------- /app/views/account/sign-up.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cliffhall/angular-firebase-user-profiles/HEAD/app/views/account/sign-up.html -------------------------------------------------------------------------------- /app/views/account/signed-in-menu.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cliffhall/angular-firebase-user-profiles/HEAD/app/views/account/signed-in-menu.html -------------------------------------------------------------------------------- /app/views/account/signed-out-menu.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cliffhall/angular-firebase-user-profiles/HEAD/app/views/account/signed-out-menu.html -------------------------------------------------------------------------------- /app/views/account/validate-panel.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cliffhall/angular-firebase-user-profiles/HEAD/app/views/account/validate-panel.html -------------------------------------------------------------------------------- /app/views/footer.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cliffhall/angular-firebase-user-profiles/HEAD/app/views/footer.html -------------------------------------------------------------------------------- /app/views/home.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cliffhall/angular-firebase-user-profiles/HEAD/app/views/home.html -------------------------------------------------------------------------------- /app/views/home/fork-me-button.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cliffhall/angular-firebase-user-profiles/HEAD/app/views/home/fork-me-button.html -------------------------------------------------------------------------------- /app/views/home/left-panel.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cliffhall/angular-firebase-user-profiles/HEAD/app/views/home/left-panel.html -------------------------------------------------------------------------------- /app/views/home/right-panel.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cliffhall/angular-firebase-user-profiles/HEAD/app/views/home/right-panel.html -------------------------------------------------------------------------------- /app/views/home/try-me-button.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cliffhall/angular-firebase-user-profiles/HEAD/app/views/home/try-me-button.html -------------------------------------------------------------------------------- /app/views/nav.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cliffhall/angular-firebase-user-profiles/HEAD/app/views/nav.html -------------------------------------------------------------------------------- /assets/css/app.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cliffhall/angular-firebase-user-profiles/HEAD/assets/css/app.css -------------------------------------------------------------------------------- /assets/css/bootstrap-social.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cliffhall/angular-firebase-user-profiles/HEAD/assets/css/bootstrap-social.css -------------------------------------------------------------------------------- /assets/css/bootstrap-theme.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cliffhall/angular-firebase-user-profiles/HEAD/assets/css/bootstrap-theme.min.css -------------------------------------------------------------------------------- /assets/css/bootstrap.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cliffhall/angular-firebase-user-profiles/HEAD/assets/css/bootstrap.min.css -------------------------------------------------------------------------------- /assets/css/jumbotron-narrow.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cliffhall/angular-firebase-user-profiles/HEAD/assets/css/jumbotron-narrow.css -------------------------------------------------------------------------------- /assets/font/glyphicons-halflings-regular.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cliffhall/angular-firebase-user-profiles/HEAD/assets/font/glyphicons-halflings-regular.eot -------------------------------------------------------------------------------- /assets/font/glyphicons-halflings-regular.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cliffhall/angular-firebase-user-profiles/HEAD/assets/font/glyphicons-halflings-regular.svg -------------------------------------------------------------------------------- /assets/font/glyphicons-halflings-regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cliffhall/angular-firebase-user-profiles/HEAD/assets/font/glyphicons-halflings-regular.ttf -------------------------------------------------------------------------------- /assets/font/glyphicons-halflings-regular.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cliffhall/angular-firebase-user-profiles/HEAD/assets/font/glyphicons-halflings-regular.woff -------------------------------------------------------------------------------- /assets/font/glyphicons-halflings-regular.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cliffhall/angular-firebase-user-profiles/HEAD/assets/font/glyphicons-halflings-regular.woff2 -------------------------------------------------------------------------------- /assets/img/user-profile.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cliffhall/angular-firebase-user-profiles/HEAD/assets/img/user-profile.png -------------------------------------------------------------------------------- /assets/lib/angular-messages.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cliffhall/angular-firebase-user-profiles/HEAD/assets/lib/angular-messages.min.js -------------------------------------------------------------------------------- /assets/lib/angular-route.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cliffhall/angular-firebase-user-profiles/HEAD/assets/lib/angular-route.min.js -------------------------------------------------------------------------------- /assets/lib/angular-sanitize.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cliffhall/angular-firebase-user-profiles/HEAD/assets/lib/angular-sanitize.min.js -------------------------------------------------------------------------------- /assets/lib/angular.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cliffhall/angular-firebase-user-profiles/HEAD/assets/lib/angular.min.js -------------------------------------------------------------------------------- /assets/lib/bootstrap.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cliffhall/angular-firebase-user-profiles/HEAD/assets/lib/bootstrap.min.js -------------------------------------------------------------------------------- /assets/lib/jquery-2.2.0.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cliffhall/angular-firebase-user-profiles/HEAD/assets/lib/jquery-2.2.0.min.js -------------------------------------------------------------------------------- /firebase-rules.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cliffhall/angular-firebase-user-profiles/HEAD/firebase-rules.txt -------------------------------------------------------------------------------- /firebase.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cliffhall/angular-firebase-user-profiles/HEAD/firebase.json -------------------------------------------------------------------------------- /index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cliffhall/angular-firebase-user-profiles/HEAD/index.html --------------------------------------------------------------------------------