misc.py 394 B

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