Flask-User-starter-app icon indicating copy to clipboard operation
Flask-User-starter-app copied to clipboard

Results 37 Flask-User-starter-app issues
Sort by recently updated
recently updated
newest added

I can change register template but i dont know how i can change login template?

The text in `app/templates/README.md` includes ``` The template files are organized into the following directories: common # Common base template files and macros flask_user # Flask-User template files (register, login,...

Fixes #41 _ImportError: cannot import name 'url_encode'_ by updating Flask-WTF 0.14.2 to 0.14.3

Flask-Mail is required but left out of requirements.txt

when trying to initialise the db it gives the following error ImportError: cannot import name 'url_encode' from 'werkzeug' Werkzeug changed the url_encode function from werkzeug.url_encode to werkzeug.urls.url_encode. Simple fix should...

'os' is imported but unused

The starter app is failing. It's probably due to updates in dependencies - flask-user.

In app/settings.py: `USER_ENABLE_REGISTRATION = True # Allow new users to register` changing to false has no effect. The setting should be: `USER_ENABLE_REGISTER = True # Allow new users to register`

As of Flask 0.11 or so, flask_script is no longer needed. See [here](http://flask.pocoo.org/docs/0.12/cli/) for details on using the new stuff - it looks pretty easy, just decorate existing functions.