source: src/main/resources/templates/interested.html@ d3cf3a1

Last change on this file since d3cf3a1 was d3cf3a1, checked in by Marija Micevska <marija_micevska@…>, 2 years ago

Initial commit

  • Property mode set to 100644
File size: 5.2 KB
Line 
1<!DOCTYPE html>
2<html lang="en" xmlns:th="http://www.thymeleaf.org">
3<head>
4 <meta charset="UTF-8">
5 <title>EDUCATUM</title>
6 <link rel="stylesheet" href="/css/style.css">
7 <link href="https://cdn.jsdelivr.net/npm/bootstrap@5.1.3/dist/css/bootstrap.min.css"
8 rel="stylesheet" integrity="sha384-1BmE4kWBq78iYhFldvKuhfTAU6auU8tT94WrHftjDbrCEXSU1oBoqyl2QvZ6jIW3"
9 crossorigin="anonymous">
10 <script src="https://code.jquery.com/jquery-3.3.1.slim.min.js"></script>
11 <script src="https://cdn.jsdelivr.net/npm/bootstrap@5.1.3/dist/js/bootstrap.bundle.min.js"
12 integrity="sha384-ka7Sk0Gln4gmtz2MlQnikT1wXgYsOg+OMhuP+IlRH9sENBO0LRn5q+8nbTov4+1p"
13 crossorigin="anonymous"></script>
14 <link rel="stylesheet"
15 href="https://cdn.jsdelivr.net/npm/@fortawesome/fontawesome-free@5.15.4/css/fontawesome.min.css">
16 <link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/css/bootstrap.min.css"/>
17 <script th:inline="javascript" src="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/js/bootstrap.min.js"></script>
18</head>
19<body>
20<section class="nav-bar">
21 <nav class="navbar navbar-expand-lg navbar-light">
22 <div class="ml-1"></div>
23 <a class="navbar-brand" href="#">
24 <p style="font-weight: bold; color: #FFCC00FF;">&nbsp;&nbsp;&nbsp;<svg xmlns="http://www.w3.org/2000/svg"
25 width="26" height="26"
26 fill="currentColor"
27 class="bi bi-mortarboard-fill"
28 viewBox="0 0 16 16">
29 <path d="M8.211 2.047a.5.5 0 0 0-.422 0l-7.5 3.5a.5.5 0 0 0 .025.917l7.5 3a.5.5 0 0 0 .372 0L14 7.14V13a1 1 0 0 0-1 1v2h3v-2a1 1 0 0 0-1-1V6.739l.686-.275a.5.5 0 0 0 .025-.917l-7.5-3.5Z"/>
30 <path d="M4.176 9.032a.5.5 0 0 0-.656.327l-.5 1.7a.5.5 0 0 0 .294.605l4.5 1.8a.5.5 0 0 0 .372 0l4.5-1.8a.5.5 0 0 0 .294-.605l-.5-1.7a.5.5 0 0 0-.656-.327L8 10.466 4.176 9.032Z"/>
31 </svg>
32 EDUCATUM
33 </p>
34 </a>
35 <div class="col-6"></div>
36 <button class="navbar-toggler" type="button" data-bs-toggle="collapse" data-bs-target="#navbarNav"
37 aria-controls="navbarNav" aria-expanded="false" aria-label="Toggle navigation">
38 <i class="fa fa-bars"></i>
39 </button>
40 <div class="collapse navbar-collapse justify-content-end navbarNav">
41 <ul class="navbar-nav mr-auto">
42 </ul>
43 </div>
44 </nav>
45</section>
46<section id="banner" style="position: relative; top:-30px;">
47 <div class="container" style="background-color: floralwhite; box-shadow: rgba(0, 0, 0, 0.56) 0px 22px 70px 4px;">
48 <div class="row">
49 <h1 class="promo-title text-center" style="color: #000029">ЗА КОЈ ПРЕДМЕТ СИ ЗАИНТЕРЕСИРАН/А?</h1>
50 </div>
51 <div class="row">
52 <form class="row" th:action="@{'/home/zainteresiran'}">
53 <div class="form-group col-1 ml-1"></div>
54 <div class="form-group col-9">
55 <input class="form-control transparent-input border-bottom" type="text"
56 placeholder="Пребарувај предмет..." name="ime"/>
57 </div>
58 <div class="form-group col">
59 <button id="filter" type="submit" class="btn btn-outline-secondary btn-block">
60 <svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" fill="currentColor"
61 class="bi bi-search" viewBox="0 0 16 16">
62 <path d="M11.742 10.344a6.5 6.5 0 1 0-1.397 1.398h-.001c.03.04.062.078.098.115l3.85 3.85a1 1 0 0 0 1.415-1.414l-3.85-3.85a1.007 1.007 0 0 0-.115-.1zM12 6.5a5.5 5.5 0 1 1-11 0 5.5 5.5 0 0 1 11 0z"/>
63 </svg>
64 Пребарај
65 </button>
66 </div>
67 </form>
68 </div>
69 <div class="row">
70 <form action="/home/listenSubject">
71 <table class="table table-hover">
72 <thead>
73 <tr>
74 <th scope="col">Име на предметот</th>
75 </tr>
76 </thead>
77 <tbody>
78 <tr th:each="s : ${subjects}">
79 <td class="col-2">
80 <input type="radio" th:value="${s.getId()}" name="subject">
81 <th:block th:text="${s.getName()}"></th:block>
82 </td>
83 </tr>
84 <tr>
85 </tr>
86 </tbody>
87 </table>
88 <button id="submit" class="btn btn-lg btn-link" type="submit">
89 Продолжи&raquo;
90 </button>
91 </form>
92 </div>
93 </div>
94 <img src="/img/wave-1.png" alt="Wave" class="bottom-img" style="position: relative; bottom: -60px;">
95</section>
96</body>
97</html>
98
99
100
101
Note: See TracBrowser for help on using the repository browser.