Register

We're using super secure hashed passwords and we hope quality rainbow tables will soon be available:

from werkzeug.security import generate_password_hash, check_password_hash ... class User(db.Model):
 __tablename__ = 'user'
 id = db.Column(db.Integer, primary_key=True)
 username = db.Column(db.String(80), nullable=False, unique=True)
 password_hash = db.Column(db.String(128), nullable=False)

 def set_password(self, password):
  self.password_hash = generate_password_hash(password)

 def check_password(self, password):
  return check_password_hash(self.password_hash, password)


So, feel free to use your bank password... Just kidding! (But seriously, don't do that.)
Home

Already have an account? Login here.