from fastapi import FastAPI from fastapi.responses import HTMLResponse import uvicorn app = FastAPI() @app.get("/", response_class=HTMLResponse) async def root(): return """ Welcome

Welcome to our website!

Please login or join our waitlist.

""" @app.get("/login", response_class=HTMLResponse) async def login(): return """ Login

Login





""" @app.get("/waitlist", response_class=HTMLResponse) async def waitlist(): return """ Join Waitlist

Join Our Waitlist



""" if __name__ == "__main__": uvicorn.run("main:app", host="0.0.0.0", port=8000, reload=True, debug=True)