gin/template/form.html

14 lines
347 B
HTML
Raw Permalink Normal View History

2021-07-19 07:08:26 +00:00
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Document</title>
</head>
<body>
<form action="/post" method="POST">
<input type="text" name="username" id="">
<input type="submit" value="提交">
</form>
</body>
</html>