springInterview/src/main/resources/templates/login.html
2020-04-30 16:09:07 +07:00

36 lines
968 B
HTML

<!DOCTYPE html>
<html
xmlns:th="http:/www.thymeleaf.org"
xmlns:layout="http://www.ultraq.net.nz/thymeleaf/layout"
lang="en">
<head th:replace="fragments/header::headerLink">
<meta charset="UTF-8">
<title>Title</title>
</head>
<body>
<div class="wrapper fadeInDown">
<div id="formContent">
<!-- Tabs Titles -->
<!-- Icon -->
<!-- Login Form -->
<form>
<input type="text" id="login" class="fadeIn second" name="login" placeholder="login">
<input type="password" id="password" class="fadeIn third" name="login" placeholder="password">
<input type="submit" class="fadeIn fourth" value="Log In">
</form>
<!-- Remind Passowrd -->
<div id="formFooter">
<a class="underlineHover" href="#">Forgot Password?</a>
</div>
</div>
</div>
</body>
<footer>
<div th:replace="fragments/footer::footer"></div>
</footer>
</html>