misc.py 433 B

123456789101112131415161718192021222324252627
  1. #!/usr/bin/env python
  2. # -*- coding: utf-8 -*-
  3. from flask import Blueprint, render_template
  4. __author__ = 'James Iter'
  5. __date__ = '2017/9/12'
  6. __contact__ = 'james.iter.cn@gmail.com'
  7. __copyright__ = '(c) 2017 by James Iter.'
  8. blueprint = Blueprint(
  9. 'v_misc',
  10. __name__,
  11. url_prefix='/'
  12. )
  13. def login():
  14. return render_template('login.html')
  15. def change_password():
  16. return render_template('change_password.html')