github.com/qiuhoude/go-web@v0.0.0-20220223060959-ab545e78f20d/gindemo/static/login.html (about) 1 <!DOCTYPE html> 2 <html lang="en"> 3 <head> 4 <meta charset="UTF-8"> 5 <title>登录</title> 6 </head> 7 <body> 8 <form action="/form" method="post" enctype="application/x-www-form-urlencoded"> 9 用户名:<input type="text" name="username"> 10 <br> 11 密   码:<input type="password" name="password"> 12 <br> 13 兴   趣: 14 <input type="checkbox" value="girl" name="hobby">女人 15 <input type="checkbox" value="game" name="hobby">游戏 16 <input type="checkbox" value="money" name="hobby">金钱 17 <br> 18 <input type="submit" value="登录"> 19 </form> 20 </body> 21 </html>