diff --git a/app/app.py b/app/app.py index 948c97d..4623113 100644 --- a/app/app.py +++ b/app/app.py @@ -5,7 +5,32 @@ def do_GET(self): if self.path == "/": self.send_response(200) self.end_headers() - self.wfile.write(b"OK") + html_content = """ + + + + StepFinalProject + + + +

StepFinalProject v 2.0.0

+ + + """ + self.wfile.write(html_content.encode("utf-8")) else: self.send_response(404)