Commenting-Server/src/main/resources/templates/login.ftl

14 lines
502 B
Plaintext

<html>
<head>
<title>Login</title>
</head>
<body>
<h1>Login Form</h1>
<div><#if errorMessage??>${errorMessage}</#if></div>
<form accept-charset="UTF-8" role="form" method="post" action="/login">
<input placeholder="Username" name="username">
<input placeholder="Password" name="password" type="password">
<input class="btn btn-success btn-block" type="submit" value="Login">
</form>
</body>
</html>