Advertisement
spacerose

nountest

May 20th, 2021
1,126
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
HTML 4.56 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. <header>
  10.     <h1>Nouns</h1>
  11.     <button id="btn-out" type="button" onClick="location.href='/logout'">Выйти из аккаунта</button>
  12. </header>
  13. <nav>
  14.     <a th:href="@{/start/verb}">Глаголы</a>
  15.     <a th:href="@{/start/noun}">Существительные</a>
  16.     <a th:href="@{/start/adjective}">Прилагательные</a>
  17.  
  18. </nav>
  19. <form name="nounTest" method="post" action="/start/noun/testChecked">
  20.     <div>
  21.         <h3>Поставьте слова в скобках в форму множественного числа:</h3>
  22.         <p>
  23.             <label for="a1" ></label>
  24.             Johnny has two (apple) <input class="form-control"
  25.                                          id="a1"
  26.                                          name="a1" type="text" placeholder="" >.
  27.         </p>
  28.         <span class="false" th:if="${Status1} == 'wrong'">
  29.         Неверно. Правильный ответ: apples.
  30.     </span>
  31.         <span class="true" th:if="${Status1} == 'correct'">
  32.         Верно.
  33.     </span>
  34.         <br>
  35.         <p>
  36.             <label for="a2" ></label>
  37.             I like cucumbers better than (tomato) <input class="form-control"
  38.                                                         id="a2"
  39.                                                         name="a2" type="text" placeholder="" >.
  40.         </p>
  41.         <span class="false" th:if="${Status2} == 'wrong'" th:els>
  42.         Неверно. Правильный ответ: tomatoes.
  43.     </span>
  44.         <span class="true" th:if="${Status2} == 'correct'">
  45.         Верно.
  46.     </span>
  47.         <br>
  48.         <p>
  49.             <label for="a3" ></label>
  50.             Bears and (wolf) <input class="form-control"
  51.                                    id="a3"
  52.                                    name="a3" type="text" placeholder="" > are wild animals.
  53.         </p>
  54.         <span class="false" th:if="${Status3} == 'wrong'">
  55.         Неверно. Правильный ответ: wolves.
  56.     </span>
  57.         <span class="true" th:if="${Status3} == 'correct'">
  58.         Верно.
  59.     </span>
  60.         <br>
  61.         <p>
  62.             <label for="a4" ></label>
  63.             Many (child) <input class="form-control"
  64.                                id="a4"
  65.                                name="a4" type="text" placeholder="" > love to ride a bicycle.
  66.         </p>
  67.         <span class="false" th:if="${Status4} == 'wrong'">
  68.         Неверно. Правильный ответ: children.
  69.     </span>
  70.         <span class="true" th:if="${Status4} == 'correct'">
  71.         Верно.
  72.     </span>
  73.         <br>
  74.         <p>
  75.             <label for="a5" ></label>
  76.             They need seven (box) <input class="form-control"
  77.                                         id="a5"
  78.                                         name="a5" type="text" placeholder="" > to pack all their stuff.
  79.         </p>
  80.         <span class="false" th:if="${Status5} == 'wrong'">
  81.         Неверно. Правильный ответ: boxes.
  82.     </span>
  83.         <span class="true" th:if="${Status5} == 'correct'">
  84.         Верно.
  85.     </span>
  86.         <br>
  87.         <p>
  88.             <label for="a6" ></label>
  89.             Maddie wants to buy a new pair of running (shoe) <input class="form-control"
  90.                                                                    id="a6"
  91.                                                                    name="a6" type="text" placeholder="" >.
  92.         </p>
  93.         <span class="false" th:if="${Status6} == 'wrong'">
  94.         Неверно. Правильный ответ: shoes.
  95.     </span>
  96.         <span class="true" th:if="${Status6} == 'correct'">
  97.         Верно.
  98.     </span>
  99.         <br>
  100.         <p>
  101.             <label for="a7" ></label>
  102.             We have only one sky, not ten (sky) <input class="form-control"
  103.                                                       id="a7"
  104.                                                       name="a7" type="text" placeholder="" >.
  105.         </p>
  106.         <span class="false" th:if="${Status7} == 'wrong'">
  107.         Неверно. Правильный ответ: skies.
  108.     </span>
  109.         <span class="true" th:if="${Status7} == 'correct'">
  110.         Верно.
  111.     </span>
  112.         <br>
  113.  
  114.         <button id="btn-sub" type="submit">Отправить</button>
  115.  
  116.     </div>
  117. </form>
  118. </body>
  119. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement