source: cimeri-main/src/main/resources/templates/listneededapartments.html@ 087ce2b

Last change on this file since 087ce2b was bc30bce, checked in by blagojanikoloski <blagojanikoloski1@…>, 16 months ago

cimeri app

  • Property mode set to 100644
File size: 3.2 KB
Line 
1<!DOCTYPE html>
2<html lang="en">
3 <head>
4 <title>Cimeri</title>
5 <meta property="og:title" content="Cimeri" />
6 <meta name="viewport" content="width=device-width, initial-scale=1.0" />
7 <meta charset="utf-8" />
8 <meta property="twitter:card" content="summary_large_image" />
9
10 <style data-tag="reset-style-sheet">
11 html { line-height: 1.15;}body { margin: 0;}* { box-sizing: border-box; border-width: 0; border-style: solid;}p,li,ul,pre,div,h1,h2,h3,h4,h5,h6,figure,blockquote,figcaption { margin: 0; padding: 0;}button { background-color: transparent;}button,input,optgroup,select,textarea { font-family: inherit; font-size: 100%; line-height: 1.15; margin: 0;}button,select { text-transform: none;}button,[type="button"],[type="reset"],[type="submit"] { -webkit-appearance: button;}button::-moz-focus-inner,[type="button"]::-moz-focus-inner,[type="reset"]::-moz-focus-inner,[type="submit"]::-moz-focus-inner { border-style: none; padding: 0;}button:-moz-focus,[type="button"]:-moz-focus,[type="reset"]:-moz-focus,[type="submit"]:-moz-focus { outline: 1px dotted ButtonText;}a { color: inherit; text-decoration: inherit;}input { padding: 2px 4px;}img { display: block;}html { scroll-behavior: smooth }
12 </style>
13 <style data-tag="default-style-sheet">
14 html {
15 font-family: Inter;
16 font-size: 16px;
17 }
18
19 body {
20 font-weight: 400;
21 font-style:normal;
22 text-decoration: none;
23 text-transform: none;
24 letter-spacing: normal;
25 line-height: 1.15;
26 color: var(--dl-color-gray-black);
27 background-color: var(--dl-color-gray-white);
28
29 }
30 </style>
31
32 <link rel="stylesheet" href="/listneededapartments/style.css" />
33 </head>
34 <body>
35 <div>
36 <link href="/listneededapartments/listneededapartments.css" rel="stylesheet" />
37
38 <div class="listneededapartments-container">
39 <div class="listneededapartments-container1">
40 <div class="listneededapartments-container2">
41 <span class="listneededapartments-text">
42 <span>LOGGED IN AS : </span><p th:text="${session.user.ime}" th:unless="${session == null}">[...]</p>
43 <br />
44 </span>
45 </div>
46 </div>
47 <span class="listneededapartments-text03">
48 <span>Apartments:</span>
49 <br />
50 </span>
51 <ul class="listneededapartments-list list">
52 <li style="white-space: pre-line" class="listneededapartments-li list-item" th:each="filteredapartment : ${filteredapartments}" th:value="${filteredapartment}" th:name="filteredapartment" th:utext="'Adress: '+${filteredapartment[6]} + ' ' + ${filteredapartment[5]} + ' Size: ' + ${filteredapartment[4]} + 'm2 ' + ' Price: ' +${filteredapartment[7]} + 'e' + '&#10;' + 'Photos: ' + ${filteredapartment[8]} + '&#10;' + 'Contact Owner: ' + ${filteredapartment[0]} + ' ' + ${filteredapartment[1]} + ' ' + ' Phone Number: ' + ${filteredapartment[2]} + ' Email: ' + ${filteredapartment[3]}" >
53 </li>
54 </ul>
55
56
57 <th:block th:if="${session.user != null}">
58 <button onclick="location.href = '/logout';" class="listneededapartments-button button">LOG OUT</button>
59 </th:block>
60
61 </div>
62 </div>
63 </body>
64</html>
Note: See TracBrowser for help on using the repository browser.