├── Makefile ├── README.md ├── app.py ├── assets ├── bootstrap.png ├── dashboard-page.png ├── index-page.png ├── installing-requirements.png ├── registration-page.png └── running.png ├── bootstrap.py ├── bootstrap3.py ├── requirements.txt ├── static ├── css │ ├── bootstrap-theme.css │ ├── bootstrap-theme.css.map │ ├── bootstrap-theme.min.css │ ├── bootstrap.css │ ├── bootstrap.css.map │ ├── bootstrap.min.css │ └── style.css ├── fonts │ ├── glyphicons-halflings-regular.eot │ ├── glyphicons-halflings-regular.svg │ ├── glyphicons-halflings-regular.ttf │ └── glyphicons-halflings-regular.woff ├── img │ ├── lock.png │ └── stormpath.png └── js │ ├── bootstrap.js │ └── bootstrap.min.js └── templates ├── base.html ├── dashboard.html ├── index.html ├── login.html └── register.html /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stormpath/stormpath-flask-sample/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stormpath/stormpath-flask-sample/HEAD/README.md -------------------------------------------------------------------------------- /app.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stormpath/stormpath-flask-sample/HEAD/app.py -------------------------------------------------------------------------------- /assets/bootstrap.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stormpath/stormpath-flask-sample/HEAD/assets/bootstrap.png -------------------------------------------------------------------------------- /assets/dashboard-page.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stormpath/stormpath-flask-sample/HEAD/assets/dashboard-page.png -------------------------------------------------------------------------------- /assets/index-page.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stormpath/stormpath-flask-sample/HEAD/assets/index-page.png -------------------------------------------------------------------------------- /assets/installing-requirements.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stormpath/stormpath-flask-sample/HEAD/assets/installing-requirements.png -------------------------------------------------------------------------------- /assets/registration-page.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stormpath/stormpath-flask-sample/HEAD/assets/registration-page.png -------------------------------------------------------------------------------- /assets/running.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stormpath/stormpath-flask-sample/HEAD/assets/running.png -------------------------------------------------------------------------------- /bootstrap.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stormpath/stormpath-flask-sample/HEAD/bootstrap.py -------------------------------------------------------------------------------- /bootstrap3.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stormpath/stormpath-flask-sample/HEAD/bootstrap3.py -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stormpath/stormpath-flask-sample/HEAD/requirements.txt -------------------------------------------------------------------------------- /static/css/bootstrap-theme.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stormpath/stormpath-flask-sample/HEAD/static/css/bootstrap-theme.css -------------------------------------------------------------------------------- /static/css/bootstrap-theme.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stormpath/stormpath-flask-sample/HEAD/static/css/bootstrap-theme.css.map -------------------------------------------------------------------------------- /static/css/bootstrap-theme.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stormpath/stormpath-flask-sample/HEAD/static/css/bootstrap-theme.min.css -------------------------------------------------------------------------------- /static/css/bootstrap.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stormpath/stormpath-flask-sample/HEAD/static/css/bootstrap.css -------------------------------------------------------------------------------- /static/css/bootstrap.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stormpath/stormpath-flask-sample/HEAD/static/css/bootstrap.css.map -------------------------------------------------------------------------------- /static/css/bootstrap.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stormpath/stormpath-flask-sample/HEAD/static/css/bootstrap.min.css -------------------------------------------------------------------------------- /static/css/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stormpath/stormpath-flask-sample/HEAD/static/css/style.css -------------------------------------------------------------------------------- /static/fonts/glyphicons-halflings-regular.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stormpath/stormpath-flask-sample/HEAD/static/fonts/glyphicons-halflings-regular.eot -------------------------------------------------------------------------------- /static/fonts/glyphicons-halflings-regular.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stormpath/stormpath-flask-sample/HEAD/static/fonts/glyphicons-halflings-regular.svg -------------------------------------------------------------------------------- /static/fonts/glyphicons-halflings-regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stormpath/stormpath-flask-sample/HEAD/static/fonts/glyphicons-halflings-regular.ttf -------------------------------------------------------------------------------- /static/fonts/glyphicons-halflings-regular.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stormpath/stormpath-flask-sample/HEAD/static/fonts/glyphicons-halflings-regular.woff -------------------------------------------------------------------------------- /static/img/lock.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stormpath/stormpath-flask-sample/HEAD/static/img/lock.png -------------------------------------------------------------------------------- /static/img/stormpath.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stormpath/stormpath-flask-sample/HEAD/static/img/stormpath.png -------------------------------------------------------------------------------- /static/js/bootstrap.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stormpath/stormpath-flask-sample/HEAD/static/js/bootstrap.js -------------------------------------------------------------------------------- /static/js/bootstrap.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stormpath/stormpath-flask-sample/HEAD/static/js/bootstrap.min.js -------------------------------------------------------------------------------- /templates/base.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stormpath/stormpath-flask-sample/HEAD/templates/base.html -------------------------------------------------------------------------------- /templates/dashboard.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stormpath/stormpath-flask-sample/HEAD/templates/dashboard.html -------------------------------------------------------------------------------- /templates/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stormpath/stormpath-flask-sample/HEAD/templates/index.html -------------------------------------------------------------------------------- /templates/login.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stormpath/stormpath-flask-sample/HEAD/templates/login.html -------------------------------------------------------------------------------- /templates/register.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stormpath/stormpath-flask-sample/HEAD/templates/register.html --------------------------------------------------------------------------------