Added a forum website

This commit is contained in:
Mohammad Rameen 2025-08-31 11:34:35 +05:30
parent dc6865352c
commit f63f2f5468
2 changed files with 26 additions and 0 deletions

View File

@ -0,0 +1,10 @@
from flask import Flask, render_template
app = Flask(__name__)
@app.route('/')
def home():
return render_template("index.html")
if __name__ == "__main__":
app.run(debug=True)

View File

@ -0,0 +1,16 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Title</title>
</head>
<body>
<label>Name</label>
<input type="text" placeholder="name">
<label>Password</label>
<input type="text" placeholder="password">
<button type="text">Ok</button>
</body>
</html>