This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
from flask import Flask, render_template | |
from flask.ext.security import SQLAlchemyUserDatastore, Security | |
from flask.ext.sqlalchemy import SQLAlchemy | |
from flask.ext.bootstrap import Bootstrap | |
from flask_mail import Mail | |
from flask.ext.security import UserMixin, RoleMixin | |
app = Flask(__name__) |