| 12345678910111213141516171819202122232425 |
- #!/usr/bin/env python
- # -*- coding: utf-8 -*-
- import json
- from flask import Blueprint, render_template, request
- import requests
- __author__ = 'James Iter'
- __date__ = '2017/9/12'
- __contact__ = 'james.iter.cn@gmail.com'
- __copyright__ = '(c) 2017 by James Iter.'
- blueprint = Blueprint(
- 'v_misc',
- __name__,
- url_prefix='/'
- )
- def login():
- return render_template('login.html')
|