<!doctype html> <html> <head> <meta charset="UTF-8" /> </head> <body> <form method="POST" action="/login"> <div> <p>ID</p> <p><input type="text" name="id" value="user" /></p> </div> <div> <p>パスワード</p> <p><input type="password" name="password" value="password" /></p> </div> <div> <button type="submit">ログイン</button> </div> </form> </body> </html>