myflask / templates /index.html
SHEN1017's picture
Upload 5 files
02c1375 verified
raw
history blame contribute delete
279 Bytes
<!DOCTYPE html>
<html>
<head>
<title>Flask 示例</title>
</head>
<body>
<h1>请输入文本:</h1>
<form action="/submit" method="post">
<input type="text" name="user_input" required>
<input type="submit" value="提交">
</form>
</body>
</html>