<%--
  Created by IntelliJ IDEA.
  User: samuel
  Date: 4/08/2020
  Time: 1:25 PM
  To change this template use File | Settings | File Templates.
--%>
<%@ page contentType="text/html;charset=UTF-8" language="java" %>
<html>
<head>
  <title>Test</title>
  <link rel="stylesheet" href="${pageContext.request.contextPath}/css/style.css">
  <meta name="viewport" content="width=device-width, initial-scale=1.0">
</head>
<body>
<div class="loginWrapper">
  <div class="loginform">
    <form id="loginform" action="/login" method="post">
      <h2>Login</h2><br>
      <label for="username">Username</label>
      <input id="username" type="text" name="username" REQUIRED placeholder="Username/email">
      <br>
      <label for="password">Password</label>
      <input id="password" type="password" name="password" REQUIRED placeholder="Password">
      <input type="hidden" name="${_csrf.parameterName}" value="${_csrf.token}"/>
      <br>
      <p class="error">${error}</p>
      <p class="logout">${logout}</p>
      <input type="submit" name="login" value="Login">
    </form>
  </div>
</div>
</body>
</html>
