from flask import Flask, render_template

app = Flask(__name__)

@app.route("/")
def index():
    return (
        "<center><h1 style='color:green'>DULL HUNTERS X BLOCKBIT MUST LIVE ON</h1><br><br>"
        "<h1>PAUL TRAFFIC SUCKS</h1><br><br>"
        "<h1>JUSTICE TO THE EBIKE!!!</h1><br><br>"
        "Security Code: ebike-1780455902</center>"
    )

if __name__ == "__main__":
    app.run(debug=True,port=3203,host="0.0.0.0")
