Advertisement
nikeza

Untitled

Apr 29th, 2020
339
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Java 2.08 KB | None | 0 0
  1. <!DOCTYPE html>
  2. <html lang="en" xmlns="http://www.w3.org/1999/xhtml"
  3.       xmlns:th="http://www.thymeleaf.org">
  4. <th:block th:include="~{fragments/head}"/>
  5. <body>
  6.     <header>
  7.         <nav class="navbar bg-dark navbar-expand-lg navbar-background bg-dark ">
  8.             <a class="navbar-brand text-white h4" th:href="@{/}">Heroes</a>
  9.             <button class="navbar-toggler" type="button" data-toggle="collapse" data-target="#navbarNav"
  10.                     aria-controls="navbarNav" aria-expanded="false" aria-label="Toggle navigation">
  11.                 <span class="navbar-toggler-icon"></span>
  12.             </button>
  13.             <div class="collapse navbar-collapse d-flex justify-content-end" id="navbarNav">
  14.                 <ul class="navbar-nav row">
  15.                     <li class="nav-item col-md-4">
  16.                         <a class="nav-link text-white active h5" th:href="@{/}">Home</a>
  17.                     </li>
  18.                     <li class="nav-item col-md-4">
  19.                         <a class="nav-link text-white active h5" th:href="@{/users/login}">Login</a>
  20.                     </li>
  21.                     <li class="nav-item col-md-4">
  22.                         <a class="nav-link text-white active h5" th:href="@{/users/register}">Register</a>
  23.                     </li>
  24.                 </ul>
  25.             </div>
  26.         </nav>
  27.     </header>
  28. <main>
  29.     <div class="container">
  30.         <h1>Welcome to Victorious Arena</h1>
  31.         <hr class="my-3"/>
  32.         <p class="h4">The most furious arena on the web</p>
  33.         <p class="h4">You will find many strong enemies but only the best will survive</p>
  34.         <hr class="my-3"/>
  35.         <h3><a th:href="@{/users/login}">Login</a> if you have an account or
  36.             <a th:href="@{/users/register}">Register</a> now and meet the greatest heroes of all time.
  37.         </h3>
  38.     </div>
  39. </main>
  40.     <footer class="footer bg-dark  py-2">
  41.         <div class="container-fluid text-center">
  42.             <div class="footer-background h5 text-white">
  43.                 &#169; CopyRight Victorious Arena. All rights reserved.
  44.             </div>
  45.         </div>
  46.     </footer>
  47. </body>
  48. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement