Newer
Older
SampleSpringSecurity2 / src / main / resources / static / login.html
yhornisse on 30 May 2023 398 bytes init project
<!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>