Advertisement
spacerose

hello

May 21st, 2021
965
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
HTML 5 0.95 KB | None | 0 0
  1. <!DOCTYPE html>
  2. <html lang="en" xmlns:th="http://www.w3.org/1999/xhtml">
  3. <head>
  4.     <link rel="stylesheet" th:href="@{/styles/nouns.css}">
  5.     <meta charset="UTF-8">
  6.     <title>Добро пожаловать</title>
  7. </head>
  8. <body>
  9.  
  10. <header>
  11.     <h1 th:text="${user_login}"></h1>
  12.     <button id="btn-out" type="button" onClick="location.href='/logout'">Выйти из аккаунта</button>
  13.  
  14. </header>
  15. <nav>
  16.     <a th:href="@{/start/verb}">Глаголы</a>
  17.     <a th:href="@{/start/noun}">Существительные</a>
  18.     <a th:href="@{/start/adjective}">Прилагательные</a>
  19. </nav>
  20. <div>
  21.  
  22.     <button id="btn-sub" type="button" onClick="location.href='/admin/users'">Режим администратора</button>
  23.     <p class="theory">
  24.         Изучение иностранных языков, а именно английского, очень актуально в наши дни.
  25.     </p>
  26. </div>
  27. </body>
  28. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement