The crux.sexy website
您最多选择25个主题 主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符
 
 
 
 
 

15 行
309 B

  1. from flask import Flask, render_template
  2. app = Flask(
  3. __name__,
  4. static_url_path='',
  5. static_folder='static/',
  6. template_folder='templates/'
  7. )
  8. @app.route('/')
  9. def index():
  10. return render_template("age-gate.html")
  11. if __name__ == "__main__":
  12. app.run(debug=True, host='0.0.0.0', port=5001)