Skip to content

Instantly share code, notes, and snippets.

from flask import Flask, render_template
app = Flask(__name__)
@app.route("/")
def home():
return render_template('index.html')
@SoloDrako
SoloDrako / index.html
Created July 8, 2023 13:47 — forked from TheMuellenator/index.html
Simple HTML Form
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Title</title>
</head>
<body>
<form>
<label>Name</label>
<input type="text" placeholder="name">