Facebook
From kominiara ruz, 3 Years ago, written in HTML5.
Embed
Download Paste or View Raw
Hits: 48
  1. <!doctype html>
  2. <html lang="en" xmlns:th="http://www.thymeleaf.org">
  3. <head th:replace="fragments/head :: head"></head>
  4. <header th:replace="fragments/header :: header"></header>
  5. <body class="bg-dark">
  6. <main role="main" class="container">
  7. <h1 class="text-light">Log in</h1>
  8.  
  9. <form th:action="@{/login}" method="post">
  10.  
  11. <div class="form-group">
  12. <label for="inputEmail" class="text-light">Email</label>
  13. <input class="form-control border-info" th:field="${user.email}" type = "email" id="inputEmail" placeholder="Your email">
  14. </div>
  15.  
  16. <div class="form-group">
  17. <label for="inputPassword" class="text-light">Password</label>
  18. <input class="form-control border-info" th:field="${user.password}" type = "password" id="inputPassword" placeholder="Your password">
  19. </div>
  20.  
  21. <div class="form-group">
  22. <span> <a href="/register">Don't have account yet? Register here</a> </span>
  23. </div>
  24.  
  25. <button class="btn btn-primary border-dark">Log in</button>
  26.  
  27. </form>
  28.  
  29. </main>
  30. </body>
  31. <!--<footer th:replace="fragments/footer :: footer"></footer>-->
  32. </html>