The crux.sexy website
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 

15 line
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)