source: cimeri-main/target/classes/templates/findapartments.html@ 087ce2b

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

First Change

  • Property mode set to 100644
File size: 3.9 KB
RevLine 
[bc30bce]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 <link
32 rel="stylesheet"
33 href="https://fonts.googleapis.com/css2?family=Inter:wght@100;200;300;400;500;600;700;800;900&amp;display=swap"
34 data-tag="font"
35 />
36 <link rel="stylesheet" href="/findapartments/style.css" />
37 </head>
38 <body>
39 <div>
40 <link href="/findapartments/findapartments.css" rel="stylesheet" />
41
42 <div class="findapartments-container">
43 <div class="findapartments-container1">
44 <div class="findapartments-container2">
45 <span class="findapartments-text">
46 <span>LOGGED IN AS : </span><p th:text="${session.user.ime}" th:unless="${session == null}">[...]</p>
47 <br />
48 </span>
49 </div>
50 </div>
51 <span class="findapartments-text03">
52 <span>ENTER INFO:</span>
53 <br />
54 </span>
55 </br>
56 </br>
57
58 <div>
59 <form th:method="post" th:action="@{/listneededapartments}">
60 <div>
61 <span class="findapartments-text06">CITY</span>
62
[087ce2b]63 <select class="findapartments-textinput1 input" name="cityid" id="cityid">
64 <option th:each="city : ${cities}" th:value="${city.cityid}" th:name="city" th:text="${city.cityname}">
[bc30bce]65 </option>
66 </select>
67
68 </div>
69 </br>
70 </br>
71 <div>
72 <span class="findapartments-text07">BUDGET</span>
73 <input
74 type="text"
75 placeholder="Budget"
76 class="findapartments-textinput1 input"
77 id="budget"
78 name="budget"
79 />
80 </div>
81 </br>
82 </br>
83 <div>
84 <span class="findapartments-text08">NUMBER OF ROOMMATES</span>
85 <input
86 type="text"
87 placeholder="Number of Roommates"
88 class="findapartments-textinput2 input"
89 id="number_of_roommates"
90 name="number_of_roommates"
91 />
92 </div>
93
94 <button class="findapartments-button button">SUBMIT</button>
95 </form>
96 </div>
97
98
99
100 <th:block th:if="${session.user != null}">
101 <button onclick="location.href = '/logout';" class="findapartments-button1 button">LOG OUT</button>
102 </th:block>
103
104 </div>
105 </div>
106 </body>
107</html>
Note: See TracBrowser for help on using the repository browser.