Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
S
SkuciSe
Overview
Overview
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Tim 2 - 2022
SkuciSe
Commits
1c03793a
Commit
1c03793a
authored
Sep 16, 2022
by
Mihailo Sebek
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Dodate ikonice u hederu i napravljene portfolio i o nama stranice
parent
2750e609
Show whitespace changes
Inline
Side-by-side
Showing
14 changed files
with
605 additions
and
20 deletions
+605
-20
SkuciSe/src/main/java/com/example/SkuciSe/controller/AppController.java
+13
-0
SkuciSe/src/main/resources/templates/index.html
+14
-0
SkuciSe/src/main/resources/templates/lista-korisnika.html
+16
-2
SkuciSe/src/main/resources/templates/lista-oglasa.html
+16
-2
SkuciSe/src/main/resources/templates/login.html
+16
-2
SkuciSe/src/main/resources/templates/moji-zahtevi.html
+16
-2
SkuciSe/src/main/resources/templates/novi-oglas-form.html
+16
-2
SkuciSe/src/main/resources/templates/oglas.html
+16
-2
SkuciSe/src/main/resources/templates/onama.html
+193
-0
SkuciSe/src/main/resources/templates/password-edit.html
+16
-2
SkuciSe/src/main/resources/templates/portfolio.html
+225
-0
SkuciSe/src/main/resources/templates/profile-edit.html
+16
-2
SkuciSe/src/main/resources/templates/profile.html
+16
-2
SkuciSe/src/main/resources/templates/register.html
+16
-2
No files found.
SkuciSe/src/main/java/com/example/SkuciSe/controller/AppController.java
View file @
1c03793a
...
@@ -65,4 +65,17 @@ public class AppController
...
@@ -65,4 +65,17 @@ public class AppController
return
(
"register"
);
return
(
"register"
);
}
}
}
}
@GetMapping
(
"/onama"
)
public
String
getOnama
(
Model
model
,
@AuthenticationPrincipal
KorisnikDetails
loggedUser
)
{
model
.
addAttribute
(
"loggedUser"
,
loggedUser
);
return
"onama"
;
}
@GetMapping
(
"/portfolio"
)
public
String
getPortfolio
(
Model
model
,
@AuthenticationPrincipal
KorisnikDetails
loggedUser
)
{
model
.
addAttribute
(
"loggedUser"
,
loggedUser
);
return
"portfolio"
;
}
}
}
SkuciSe/src/main/resources/templates/index.html
View file @
1c03793a
...
@@ -51,6 +51,20 @@
...
@@ -51,6 +51,20 @@
<span
class=
"sr-only"
>
(current)
</span>
<span
class=
"sr-only"
>
(current)
</span>
</a>
</a>
</li>
</li>
<li
class=
"nav-item active"
>
<a
class=
"nav-link"
th:href=
"@{/onama}"
>
<i
class=
"fa-sharp fa-solid fa-address-card"
></i>
<p>
O nama
</p>
<span
class=
"sr-only"
>
(current)
</span>
</a>
</li>
<li
class=
"nav-item active"
>
<a
class=
"nav-link"
th:href=
"@{/portfolio}"
>
<i
class=
"fa-solid fa-briefcase"
></i>
<p>
Portfolio
</p>
<span
class=
"sr-only"
>
(current)
</span>
</a>
</li>
</ul>
</ul>
<form
class=
"form-inline my-2 my-lg-0"
th:if=
"${loggedUser != null}"
>
<form
class=
"form-inline my-2 my-lg-0"
th:if=
"${loggedUser != null}"
>
<a
th:href=
"@{/novi-oglas}"
>
<a
th:href=
"@{/novi-oglas}"
>
...
...
SkuciSe/src/main/resources/templates/lista-korisnika.html
View file @
1c03793a
...
@@ -46,6 +46,20 @@
...
@@ -46,6 +46,20 @@
<span
class=
"sr-only"
>
(current)
</span>
<span
class=
"sr-only"
>
(current)
</span>
</a>
</a>
</li>
</li>
<li
class=
"nav-item active"
>
<a
class=
"nav-link"
th:href=
"@{/onama}"
>
<i
class=
"fa-sharp fa-solid fa-address-card"
></i>
<p>
O nama
</p>
<span
class=
"sr-only"
>
(current)
</span>
</a>
</li>
<li
class=
"nav-item active"
>
<a
class=
"nav-link"
th:href=
"@{/portfolio}"
>
<i
class=
"fa-solid fa-briefcase"
></i>
<p>
Portfolio
</p>
<span
class=
"sr-only"
>
(current)
</span>
</a>
</li>
</ul>
</ul>
<form
class=
"form-inline my-2 my-lg-0"
th:if=
"${loggedUser != null}"
>
<form
class=
"form-inline my-2 my-lg-0"
th:if=
"${loggedUser != null}"
>
<a
th:href=
"@{/novi-oglas}"
><button
type=
"button"
class=
"btn btn-primary btn-md mr-2"
><i
class=
"fa-solid fa-plus"
></i>
Postavite
<a
th:href=
"@{/novi-oglas}"
><button
type=
"button"
class=
"btn btn-primary btn-md mr-2"
><i
class=
"fa-solid fa-plus"
></i>
Postavite
...
@@ -149,8 +163,8 @@
...
@@ -149,8 +163,8 @@
<div
class=
"col-xl-2 col-md-4 col-sm-4 col-12"
><h6
class=
"mb-3 mb-lg-4 bold-text "
><b>
MENI
</b><i
class=
"fa-solid fa-bars"
></i></h6>
<div
class=
"col-xl-2 col-md-4 col-sm-4 col-12"
><h6
class=
"mb-3 mb-lg-4 bold-text "
><b>
MENI
</b><i
class=
"fa-solid fa-bars"
></i></h6>
<ul
class=
"list-unstyled"
>
<ul
class=
"list-unstyled"
>
<li><a
href=
"/index"
style=
"text-decoration: none;color:#627482;"
onmouseover=
"this.style.color='#989c9e'"
onMouseOut=
"this.style.color='#627482'"
>
Pocetna
</a></li>
<li><a
href=
"/index"
style=
"text-decoration: none;color:#627482;"
onmouseover=
"this.style.color='#989c9e'"
onMouseOut=
"this.style.color='#627482'"
>
Pocetna
</a></li>
<li><a
href=
"/
index
"
style=
"text-decoration: none;color:#627482;"
onmouseover=
"this.style.color='#989c9e'"
onMouseOut=
"this.style.color='#627482'"
>
O nama
</a></li>
<li><a
href=
"/
onama
"
style=
"text-decoration: none;color:#627482;"
onmouseover=
"this.style.color='#989c9e'"
onMouseOut=
"this.style.color='#627482'"
>
O nama
</a></li>
<li><a
href=
"/
index
"
style=
"text-decoration: none;color:#627482;"
onmouseover=
"this.style.color='#989c9e'"
onMouseOut=
"this.style.color='#627482'"
>
Portfolio
</a></li>
<li><a
href=
"/
portfolio
"
style=
"text-decoration: none;color:#627482;"
onmouseover=
"this.style.color='#989c9e'"
onMouseOut=
"this.style.color='#627482'"
>
Portfolio
</a></li>
</ul>
</ul>
</div>
</div>
<div
class=
"col-xl-2 col-md-4 col-sm-4 col-12"
><h6
<div
class=
"col-xl-2 col-md-4 col-sm-4 col-12"
><h6
...
...
SkuciSe/src/main/resources/templates/lista-oglasa.html
View file @
1c03793a
...
@@ -48,6 +48,20 @@
...
@@ -48,6 +48,20 @@
<span
class=
"sr-only"
>
(current)
</span>
<span
class=
"sr-only"
>
(current)
</span>
</a>
</a>
</li>
</li>
<li
class=
"nav-item active"
>
<a
class=
"nav-link"
th:href=
"@{/onama}"
>
<i
class=
"fa-sharp fa-solid fa-address-card"
></i>
<p>
O nama
</p>
<span
class=
"sr-only"
>
(current)
</span>
</a>
</li>
<li
class=
"nav-item active"
>
<a
class=
"nav-link"
th:href=
"@{/portfolio}"
>
<i
class=
"fa-solid fa-briefcase"
></i>
<p>
Portfolio
</p>
<span
class=
"sr-only"
>
(current)
</span>
</a>
</li>
</ul>
</ul>
<form
class=
"form-inline my-2 my-lg-0"
th:if=
"${loggedUser != null}"
>
<form
class=
"form-inline my-2 my-lg-0"
th:if=
"${loggedUser != null}"
>
<a
th:href=
"@{/novi-oglas}"
>
<a
th:href=
"@{/novi-oglas}"
>
...
@@ -344,8 +358,8 @@
...
@@ -344,8 +358,8 @@
<div
class=
"col-xl-2 col-md-4 col-sm-4 col-12"
><h6
class=
"mb-3 mb-lg-4 bold-text "
><b>
MENI
</b><i
class=
"fa-solid fa-bars"
></i></h6>
<div
class=
"col-xl-2 col-md-4 col-sm-4 col-12"
><h6
class=
"mb-3 mb-lg-4 bold-text "
><b>
MENI
</b><i
class=
"fa-solid fa-bars"
></i></h6>
<ul
class=
"list-unstyled"
>
<ul
class=
"list-unstyled"
>
<li><a
href=
"/index"
style=
"text-decoration: none;color:#627482;"
onmouseover=
"this.style.color='#989c9e'"
onMouseOut=
"this.style.color='#627482'"
>
Pocetna
</a></li>
<li><a
href=
"/index"
style=
"text-decoration: none;color:#627482;"
onmouseover=
"this.style.color='#989c9e'"
onMouseOut=
"this.style.color='#627482'"
>
Pocetna
</a></li>
<li><a
href=
"/
index
"
style=
"text-decoration: none;color:#627482;"
onmouseover=
"this.style.color='#989c9e'"
onMouseOut=
"this.style.color='#627482'"
>
O nama
</a></li>
<li><a
href=
"/
onama
"
style=
"text-decoration: none;color:#627482;"
onmouseover=
"this.style.color='#989c9e'"
onMouseOut=
"this.style.color='#627482'"
>
O nama
</a></li>
<li><a
href=
"/
index
"
style=
"text-decoration: none;color:#627482;"
onmouseover=
"this.style.color='#989c9e'"
onMouseOut=
"this.style.color='#627482'"
>
Portfolio
</a></li>
<li><a
href=
"/
portfolio
"
style=
"text-decoration: none;color:#627482;"
onmouseover=
"this.style.color='#989c9e'"
onMouseOut=
"this.style.color='#627482'"
>
Portfolio
</a></li>
</ul>
</ul>
</div>
</div>
<div
class=
"col-xl-2 col-md-4 col-sm-4 col-12"
><h6
<div
class=
"col-xl-2 col-md-4 col-sm-4 col-12"
><h6
...
...
SkuciSe/src/main/resources/templates/login.html
View file @
1c03793a
...
@@ -44,6 +44,20 @@
...
@@ -44,6 +44,20 @@
<span
class=
"sr-only"
>
(current)
</span>
<span
class=
"sr-only"
>
(current)
</span>
</a>
</a>
</li>
</li>
<li
class=
"nav-item active"
>
<a
class=
"nav-link"
th:href=
"@{/onama}"
>
<i
class=
"fa-sharp fa-solid fa-address-card"
></i>
<p>
O nama
</p>
<span
class=
"sr-only"
>
(current)
</span>
</a>
</li>
<li
class=
"nav-item active"
>
<a
class=
"nav-link"
th:href=
"@{/portfolio}"
>
<i
class=
"fa-solid fa-briefcase"
></i>
<p>
Portfolio
</p>
<span
class=
"sr-only"
>
(current)
</span>
</a>
</li>
</ul>
</ul>
<form
class=
"form-inline my-2 my-lg-0"
th:if=
"${loggedUser != null}"
>
<form
class=
"form-inline my-2 my-lg-0"
th:if=
"${loggedUser != null}"
>
<a
th:href=
"@{/novi-oglas}"
>
<a
th:href=
"@{/novi-oglas}"
>
...
@@ -126,8 +140,8 @@
...
@@ -126,8 +140,8 @@
<div
class=
"col-xl-2 col-md-4 col-sm-4 col-12"
><h6
class=
"mb-3 mb-lg-4 bold-text "
><b>
MENI
</b><i
class=
"fa-solid fa-bars"
></i></h6>
<div
class=
"col-xl-2 col-md-4 col-sm-4 col-12"
><h6
class=
"mb-3 mb-lg-4 bold-text "
><b>
MENI
</b><i
class=
"fa-solid fa-bars"
></i></h6>
<ul
class=
"list-unstyled"
>
<ul
class=
"list-unstyled"
>
<li><a
href=
"/index"
style=
"text-decoration: none;color:#627482;"
onmouseover=
"this.style.color='#989c9e'"
onMouseOut=
"this.style.color='#627482'"
>
Pocetna
</a></li>
<li><a
href=
"/index"
style=
"text-decoration: none;color:#627482;"
onmouseover=
"this.style.color='#989c9e'"
onMouseOut=
"this.style.color='#627482'"
>
Pocetna
</a></li>
<li><a
href=
"/
index
"
style=
"text-decoration: none;color:#627482;"
onmouseover=
"this.style.color='#989c9e'"
onMouseOut=
"this.style.color='#627482'"
>
O nama
</a></li>
<li><a
href=
"/
onama
"
style=
"text-decoration: none;color:#627482;"
onmouseover=
"this.style.color='#989c9e'"
onMouseOut=
"this.style.color='#627482'"
>
O nama
</a></li>
<li><a
href=
"/
index
"
style=
"text-decoration: none;color:#627482;"
onmouseover=
"this.style.color='#989c9e'"
onMouseOut=
"this.style.color='#627482'"
>
Portfolio
</a></li>
<li><a
href=
"/
portfolio
"
style=
"text-decoration: none;color:#627482;"
onmouseover=
"this.style.color='#989c9e'"
onMouseOut=
"this.style.color='#627482'"
>
Portfolio
</a></li>
</ul>
</ul>
</div>
</div>
<div
class=
"col-xl-2 col-md-4 col-sm-4 col-12"
><h6
<div
class=
"col-xl-2 col-md-4 col-sm-4 col-12"
><h6
...
...
SkuciSe/src/main/resources/templates/moji-zahtevi.html
View file @
1c03793a
...
@@ -48,6 +48,20 @@
...
@@ -48,6 +48,20 @@
<span
class=
"sr-only"
>
(current)
</span>
<span
class=
"sr-only"
>
(current)
</span>
</a>
</a>
</li>
</li>
<li
class=
"nav-item active"
>
<a
class=
"nav-link"
th:href=
"@{/onama}"
>
<i
class=
"fa-sharp fa-solid fa-address-card"
></i>
<p>
O nama
</p>
<span
class=
"sr-only"
>
(current)
</span>
</a>
</li>
<li
class=
"nav-item active"
>
<a
class=
"nav-link"
th:href=
"@{/portfolio}"
>
<i
class=
"fa-solid fa-briefcase"
></i>
<p>
Portfolio
</p>
<span
class=
"sr-only"
>
(current)
</span>
</a>
</li>
</ul>
</ul>
<form
class=
"form-inline my-2 my-lg-0"
th:if=
"${loggedUser != null}"
>
<form
class=
"form-inline my-2 my-lg-0"
th:if=
"${loggedUser != null}"
>
<a
th:href=
"@{/novi-oglas}"
>
<a
th:href=
"@{/novi-oglas}"
>
...
@@ -103,8 +117,8 @@
...
@@ -103,8 +117,8 @@
<div
class=
"col-xl-2 col-md-4 col-sm-4 col-12"
><h6
class=
"mb-3 mb-lg-4 bold-text "
><b>
MENI
</b><i
class=
"fa-solid fa-bars"
></i></h6>
<div
class=
"col-xl-2 col-md-4 col-sm-4 col-12"
><h6
class=
"mb-3 mb-lg-4 bold-text "
><b>
MENI
</b><i
class=
"fa-solid fa-bars"
></i></h6>
<ul
class=
"list-unstyled"
>
<ul
class=
"list-unstyled"
>
<li><a
href=
"/index"
style=
"text-decoration: none;color:#627482;"
onmouseover=
"this.style.color='#989c9e'"
onMouseOut=
"this.style.color='#627482'"
>
Pocetna
</a></li>
<li><a
href=
"/index"
style=
"text-decoration: none;color:#627482;"
onmouseover=
"this.style.color='#989c9e'"
onMouseOut=
"this.style.color='#627482'"
>
Pocetna
</a></li>
<li><a
href=
"/
index
"
style=
"text-decoration: none;color:#627482;"
onmouseover=
"this.style.color='#989c9e'"
onMouseOut=
"this.style.color='#627482'"
>
O nama
</a></li>
<li><a
href=
"/
onama
"
style=
"text-decoration: none;color:#627482;"
onmouseover=
"this.style.color='#989c9e'"
onMouseOut=
"this.style.color='#627482'"
>
O nama
</a></li>
<li><a
href=
"/
index
"
style=
"text-decoration: none;color:#627482;"
onmouseover=
"this.style.color='#989c9e'"
onMouseOut=
"this.style.color='#627482'"
>
Portfolio
</a></li>
<li><a
href=
"/
portfolio
"
style=
"text-decoration: none;color:#627482;"
onmouseover=
"this.style.color='#989c9e'"
onMouseOut=
"this.style.color='#627482'"
>
Portfolio
</a></li>
</ul>
</ul>
</div>
</div>
<div
class=
"col-xl-2 col-md-4 col-sm-4 col-12"
><h6
<div
class=
"col-xl-2 col-md-4 col-sm-4 col-12"
><h6
...
...
SkuciSe/src/main/resources/templates/novi-oglas-form.html
View file @
1c03793a
...
@@ -47,6 +47,20 @@
...
@@ -47,6 +47,20 @@
<span
class=
"sr-only"
>
(current)
</span>
<span
class=
"sr-only"
>
(current)
</span>
</a>
</a>
</li>
</li>
<li
class=
"nav-item active"
>
<a
class=
"nav-link"
th:href=
"@{/onama}"
>
<i
class=
"fa-sharp fa-solid fa-address-card"
></i>
<p>
O nama
</p>
<span
class=
"sr-only"
>
(current)
</span>
</a>
</li>
<li
class=
"nav-item active"
>
<a
class=
"nav-link"
th:href=
"@{/portfolio}"
>
<i
class=
"fa-solid fa-briefcase"
></i>
<p>
Portfolio
</p>
<span
class=
"sr-only"
>
(current)
</span>
</a>
</li>
</ul>
</ul>
<form
class=
"form-inline my-2 my-lg-0"
th:if=
"${loggedUser != null}"
>
<form
class=
"form-inline my-2 my-lg-0"
th:if=
"${loggedUser != null}"
>
<a
th:href=
"@{/novi-oglas}"
>
<a
th:href=
"@{/novi-oglas}"
>
...
@@ -252,8 +266,8 @@
...
@@ -252,8 +266,8 @@
<div
class=
"col-xl-2 col-md-4 col-sm-4 col-12"
><h6
class=
"mb-3 mb-lg-4 bold-text "
><b>
MENI
</b><i
class=
"fa-solid fa-bars"
></i></h6>
<div
class=
"col-xl-2 col-md-4 col-sm-4 col-12"
><h6
class=
"mb-3 mb-lg-4 bold-text "
><b>
MENI
</b><i
class=
"fa-solid fa-bars"
></i></h6>
<ul
class=
"list-unstyled"
>
<ul
class=
"list-unstyled"
>
<li><a
href=
"/index"
style=
"text-decoration: none;color:#627482;"
onmouseover=
"this.style.color='#989c9e'"
onMouseOut=
"this.style.color='#627482'"
>
Pocetna
</a></li>
<li><a
href=
"/index"
style=
"text-decoration: none;color:#627482;"
onmouseover=
"this.style.color='#989c9e'"
onMouseOut=
"this.style.color='#627482'"
>
Pocetna
</a></li>
<li><a
href=
"/
index
"
style=
"text-decoration: none;color:#627482;"
onmouseover=
"this.style.color='#989c9e'"
onMouseOut=
"this.style.color='#627482'"
>
O nama
</a></li>
<li><a
href=
"/
onama
"
style=
"text-decoration: none;color:#627482;"
onmouseover=
"this.style.color='#989c9e'"
onMouseOut=
"this.style.color='#627482'"
>
O nama
</a></li>
<li><a
href=
"/
index
"
style=
"text-decoration: none;color:#627482;"
onmouseover=
"this.style.color='#989c9e'"
onMouseOut=
"this.style.color='#627482'"
>
Portfolio
</a></li>
<li><a
href=
"/
portfolio
"
style=
"text-decoration: none;color:#627482;"
onmouseover=
"this.style.color='#989c9e'"
onMouseOut=
"this.style.color='#627482'"
>
Portfolio
</a></li>
</ul>
</ul>
</div>
</div>
<div
class=
"col-xl-2 col-md-4 col-sm-4 col-12"
><h6
<div
class=
"col-xl-2 col-md-4 col-sm-4 col-12"
><h6
...
...
SkuciSe/src/main/resources/templates/oglas.html
View file @
1c03793a
...
@@ -46,6 +46,20 @@
...
@@ -46,6 +46,20 @@
<span
class=
"sr-only"
>
(current)
</span>
<span
class=
"sr-only"
>
(current)
</span>
</a>
</a>
</li>
</li>
<li
class=
"nav-item active"
>
<a
class=
"nav-link"
th:href=
"@{/onama}"
>
<i
class=
"fa-sharp fa-solid fa-address-card"
></i>
<p>
O nama
</p>
<span
class=
"sr-only"
>
(current)
</span>
</a>
</li>
<li
class=
"nav-item active"
>
<a
class=
"nav-link"
th:href=
"@{/portfolio}"
>
<i
class=
"fa-solid fa-briefcase"
></i>
<p>
Portfolio
</p>
<span
class=
"sr-only"
>
(current)
</span>
</a>
</li>
</ul>
</ul>
<form
class=
"form-inline my-2 my-lg-0"
th:if=
"${loggedUser != null}"
>
<form
class=
"form-inline my-2 my-lg-0"
th:if=
"${loggedUser != null}"
>
<a
th:href=
"@{/novi-oglas}"
>
<a
th:href=
"@{/novi-oglas}"
>
...
@@ -207,8 +221,8 @@
...
@@ -207,8 +221,8 @@
<div
class=
"col-xl-2 col-md-4 col-sm-4 col-12"
><h6
class=
"mb-3 mb-lg-4 bold-text "
><b>
MENI
</b><i
class=
"fa-solid fa-bars"
></i></h6>
<div
class=
"col-xl-2 col-md-4 col-sm-4 col-12"
><h6
class=
"mb-3 mb-lg-4 bold-text "
><b>
MENI
</b><i
class=
"fa-solid fa-bars"
></i></h6>
<ul
class=
"list-unstyled"
>
<ul
class=
"list-unstyled"
>
<li><a
href=
"/index"
style=
"text-decoration: none;color:#627482;"
onmouseover=
"this.style.color='#989c9e'"
onMouseOut=
"this.style.color='#627482'"
>
Pocetna
</a></li>
<li><a
href=
"/index"
style=
"text-decoration: none;color:#627482;"
onmouseover=
"this.style.color='#989c9e'"
onMouseOut=
"this.style.color='#627482'"
>
Pocetna
</a></li>
<li><a
href=
"/
index
"
style=
"text-decoration: none;color:#627482;"
onmouseover=
"this.style.color='#989c9e'"
onMouseOut=
"this.style.color='#627482'"
>
O nama
</a></li>
<li><a
href=
"/
onama
"
style=
"text-decoration: none;color:#627482;"
onmouseover=
"this.style.color='#989c9e'"
onMouseOut=
"this.style.color='#627482'"
>
O nama
</a></li>
<li><a
href=
"/
index
"
style=
"text-decoration: none;color:#627482;"
onmouseover=
"this.style.color='#989c9e'"
onMouseOut=
"this.style.color='#627482'"
>
Portfolio
</a></li>
<li><a
href=
"/
portfolio
"
style=
"text-decoration: none;color:#627482;"
onmouseover=
"this.style.color='#989c9e'"
onMouseOut=
"this.style.color='#627482'"
>
Portfolio
</a></li>
</ul>
</ul>
</div>
</div>
<div
class=
"col-xl-2 col-md-4 col-sm-4 col-12"
><h6
<div
class=
"col-xl-2 col-md-4 col-sm-4 col-12"
><h6
...
...
SkuciSe/src/main/resources/templates/onama.html
0 → 100644
View file @
1c03793a
<!DOCTYPE html>
<html
lang=
"en"
xmlns=
"http://www.w3.org/1999/html"
xmlns:th=
"http://www.w3.org/1999/xhtml"
>
<head>
<meta
charset=
"utf-8"
/>
<meta
name=
"viewport"
content=
"width=device-width, initial-scale=1, shrink-to-fit=no"
/>
<meta
name=
"description"
content=
""
/>
<meta
name=
"author"
content=
""
/>
<title>
SkuciSe
</title>
<link
rel=
"shortcut icon"
type=
"image/x-icon"
href=
"/images/logo.ico"
/>
<link
href=
'https://fonts.googleapis.com/css?family=Jost'
rel=
'stylesheet'
>
<link
href=
"//maxcdn.bootstrapcdn.com/bootstrap/4.1.1/css/bootstrap.min.css"
rel=
"stylesheet"
id=
"bootstrap-css"
>
<link
rel=
"stylesheet"
href=
"https://cdnjs.cloudflare.com/ajax/libs/animate.css/4.1.1/animate.min.css"
/>
<!-- Favicon-->
<link
rel=
"icon"
type=
"image/x-icon"
href=
"assets/favicon.ico"
/>
<!-- CSS only -->
<link
href=
"https://cdn.jsdelivr.net/npm/bootstrap@5.2.0/dist/css/bootstrap.min.css"
rel=
"stylesheet"
integrity=
"sha384-gH2yIJqKdNHPEq0n4Mqa/HGKIhSkIHeL5AyhkYV8i59U5AR6csBvApHHNl/vI1Bx"
crossorigin=
"anonymous"
>
<!-- Core theme CSS (includes Bootstrap)-->
<link
href=
"/css/style.css"
rel=
"stylesheet"
/>
</head>
<body
th:object=
"${loggedUser}"
>
<nav
class=
"navbar navbar-icon-top navbar-expand-lg p-3"
>
<a
class=
"navbar-brand"
href=
"#"
>
</a>
<button
class=
"navbar-toggler"
type=
"button"
data-toggle=
"collapse"
data-target=
"#navbarSupportedContent"
aria-controls=
"navbarSupportedContent"
aria-expanded=
"false"
aria-label=
"Toggle navigation"
>
<span
class=
"navbar-toggler-icon"
></span>
</button>
<div
class=
"collapse navbar-collapse"
id=
"navbarSupportedContent"
>
<ul
class=
"navbar-nav mr-auto"
>
<li
class=
"nav-item active"
>
<a
class=
"nav-link"
th:href=
"@{/index}"
>
<i
class=
"fa fa-home"
></i>
Pocetna
<span
class=
"sr-only"
>
(current)
</span>
</a>
</li>
<li
class=
"nav-item active"
>
<a
class=
"nav-link"
href=
"/lista-oglasa"
>
<i
class=
"fa fa-poll-h"
></i>
Lista oglasa
<span
class=
"sr-only"
>
(current)
</span>
</a>
</li>
<li
class=
"nav-item active"
>
<a
class=
"nav-link"
th:href=
"@{/onama}"
>
<i
class=
"fa-sharp fa-solid fa-address-card"
></i>
<p>
O nama
</p>
<span
class=
"sr-only"
>
(current)
</span>
</a>
</li>
<li
class=
"nav-item active"
>
<a
class=
"nav-link"
th:href=
"@{/portfolio}"
>
<i
class=
"fa-solid fa-briefcase"
></i>
<p>
Portfolio
</p>
<span
class=
"sr-only"
>
(current)
</span>
</a>
</li>
</ul>
<form
class=
"form-inline my-2 my-lg-0"
th:if=
"${loggedUser != null}"
>
<a
th:href=
"@{/novi-oglas}"
>
<button
type=
"button"
class=
"btn btn-primary btn-md mr-2"
><i
class=
"fa-solid fa-plus"
></i>
Postavite
novi oglas
</button>
</a>
</form>
<ul
class=
"navbar-nav"
>
<li
class=
"nav-item"
th:if=
"${loggedUser == null}"
>
<a
th:href=
"@{/login}"
><i
class=
"fas fa-sign-in-alt"
style=
"color:#495056"
></i><span
style=
"padding:10px;color:#495056"
>
Prijavi se
</span></a>
</li>
<li
class=
"nav-item"
th:if=
"${loggedUser == null}"
>
<a
th:href=
"@{/register}"
><i
class=
"fa-solid fa-circle-user"
style=
"color:#495056"
></i><span
style=
"padding:10px;color:#495056"
>
Registruj se
</span></a>
</li>
<li
th:if=
"${loggedUser != null}"
>
<div
class=
"dropdown mr-4"
>
<button
class=
"btn btn-secondary dropdown-toggle round"
type=
"button"
id=
"dropdownMenuButton"
data-toggle=
"dropdown"
aria-haspopup=
"true"
aria-expanded=
"false"
>
<i
class=
"fa-solid fa-circle-user"
></i><span
style=
"padding:10px;"
th:text=
"${loggedUser.getKorisnik().getIme()}"
></span>
</button>
<div
class=
"dropdown-menu"
aria-labelledby=
"dropdownMenuButton"
>
<a
class=
"dropdown-item"
th:href=
"@{/profile}"
>
Moj Profil
</a>
<a
class=
"dropdown-item"
th:href=
"@{/profile/moji-oglasi}"
>
Moji Oglasi
</a>
<a
class=
"dropdown-item"
th:href=
"@{/profile/moji-zahtevi}"
>
Moji Zahtevi
</a>
<a
th:if=
"${loggedUser.getKorisnik().getTipId() == 2}"
class=
"dropdown-item"
th:href=
"@{/lista-korisnika}"
>
Lista Profila
</a>
<form
th:action=
"@{/logout}"
method=
"post"
id=
"my_form"
class=
"dropdown-item"
>
<a
href=
"#"
onclick=
"document.getElementById('my_form').submit(); return false;"
><i
class=
"fas fa-sign-in-alt"
></i><span
style=
"padding:5px;"
>
Odjavi se
</span></a>
</form>
</div>
</div>
</li>
</ul>
</div>
</nav>
<header
class=
"masthead pozadinaSlika"
>
<div
class=
"container d-flex justify-content-center align-items-center"
style=
"height: 450px;font-size: 27px"
>
<div
class=
"row justify-content-center w-100"
>
<div
class=
"col d-flex justify-content-center align-items-center"
>
<div
class=
"text-center text-white w-100"
>
<h1
class=
"mb-5"
style=
"color:white"
>
Pretrazite oglase
</h1>
<form
class=
"form-subscribe"
method=
"GET"
th:action=
"@{/lista-oglasa}"
>
<div
class=
"row"
>
<div
class=
"col-3"
>
<select
class=
"form-select"
name=
"lokacijaId"
id=
"lokacijeopt"
>
<option
value=
""
selected
>
Sve lokacije
</option>
<option
th:each=
"lokacija: ${lokacije}"
th:value=
"${lokacija.getLokacijaId()}"
th:text=
"${lokacija.getNaziv()}"
></option>
</select>
</div>
<div
class=
"col-3"
>
<input
type=
"radio"
name=
"vrstaOglasaId"
id=
"radiodugme1"
value=
"1"
>
<label
for=
"radiodugme1"
style=
"color:white"
>
Prodaja
</label>
</div>
<div
class=
"col-3"
>
<input
type=
"radio"
name=
"vrstaOglasaId"
id=
"radiodugme2"
value=
"2"
>
<label
for=
"radiodugme2"
style=
"color:white"
>
Iznajmljivanje
</label>
</div>
<div
class=
"col-3"
>
<button
class=
"btn btn-secondary btn-lg"
id=
"submitButton"
type=
"submit"
>
Pretrazi
</button>
</div>
</div>
</form>
</div>
</div>
</div>
</div>
</header>
<div
class=
"container-fluid pb-0 mb-0 justify-content-center text-light "
>
<footer>
<div
class=
"row my-5 justify-content-center py-5"
>
<div
class=
"col-11"
>
<div
class=
"row "
>
<div
class=
"col-xl-8 col-md-4 col-sm-4 col-12 my-auto mx-auto a"
><h3
class=
"text-muted mb-md-0 mb-5 bold-text"
>
SkuciSe
</h3></div>
<div
class=
"col-xl-2 col-md-4 col-sm-4 col-12"
><h6
class=
"mb-3 mb-lg-4 bold-text "
><b>
MENI
</b><i
class=
"fa-solid fa-bars"
></i></h6>
<ul
class=
"list-unstyled"
>
<li><a
href=
"/index"
style=
"text-decoration: none;color:#627482;"
onmouseover=
"this.style.color='#989c9e'"
onMouseOut=
"this.style.color='#627482'"
>
Pocetna
</a></li>
<li><a
href=
"/onama"
style=
"text-decoration: none;color:#627482;"
onmouseover=
"this.style.color='#989c9e'"
onMouseOut=
"this.style.color='#627482'"
>
O nama
</a></li>
<li><a
href=
"/portfolio"
style=
"text-decoration: none;color:#627482;"
onmouseover=
"this.style.color='#989c9e'"
onMouseOut=
"this.style.color='#627482'"
>
Portfolio
</a></li>
</ul>
</div>
<div
class=
"col-xl-2 col-md-4 col-sm-4 col-12"
><h6
class=
"mb-3 mb-lg-4 text-muted bold-text mt-sm-0 mt-5"
><b>
ADRESA
</b><i
class=
"fa-solid fa-map-pin"
></i></h6>
<p><a
href=
"http://maps.google.com/maps?daddr=Radoja Domanovića 12 Kragujevac&"
style=
"text-decoration: none;color:#627482;"
onmouseover=
"this.style.color='#989c9e'"
onMouseOut=
"this.style.color='#627482'"
>
Radoja Domanovića 12 Kragujevac 34000
</a></p>
</div>
<div
class=
"row "
>
<div
class=
"col-xl-8 col-md-4 col-sm-4 col-auto my-md-0 mt-5 order-sm-1 order-3 align-self-end"
><p
class=
"social text-muted mb-0 pb-0 bold-text"
><span
class=
"mx-2"
><i
class=
"fa fa-facebook"
aria-hidden=
"true"
></i></span>
<span
class=
"mx-2"
><i
class=
"fa fa-linkedin-square"
aria-hidden=
"true"
></i></span>
<span
class=
"mx-2"
><i
class=
"fa fa-twitter"
aria-hidden=
"true"
></i></span>
<span
class=
"mx-2"
><i
class=
"fa fa-instagram"
aria-hidden=
"true"
></i></span></p><small
class=
"rights"
><span>
®
</span>
SkuciSe. Sva prava zadrzana.
</small></div>
<div
class=
"col-xl-2 col-md-4 col-sm-4 col-auto order-1 align-self-end "
><h6
class=
"mt-55 mt-2 text-muted bold-text"
><b>
Korisnicki centar
</b><i
class=
"fa-solid fa-phone"
></i></h6><small>
<span><i
class=
"fa fa-envelope"
aria-hidden=
"true"
></i></span><a
href=
"mailto:someone@yoursite.com"
style=
"text-decoration: none;color:#627482;"
onmouseover=
"this.style.color='#989c9e'"
onMouseOut=
"this.style.color='#627482'"
>
skucise@gmail.com
</a>
</small></div>
</div>
</div>
</div>
</footer>
</div>
<!-- JavaScript Bundle with Popper -->
<script
src=
"//maxcdn.bootstrapcdn.com/bootstrap/4.1.1/js/bootstrap.min.js"
></script>
<script
src=
"//cdnjs.cloudflare.com/ajax/libs/jquery/3.2.1/jquery.min.js"
></script>
<script
src=
"https://code.jquery.com/jquery-3.2.1.slim.min.js"
integrity=
"sha384-KJ3o2DKtIkvYIK3UENzmM7KCkRr/rE9/Qpg6aAZGJwFDMVNA/GpGFF93hXpG5KkN"
crossorigin=
"anonymous"
></script>
<script
src=
"https://cdn.jsdelivr.net/npm/popper.js@1.12.9/dist/umd/popper.min.js"
integrity=
"sha384-ApNbgh9B+Y1QKtv3Rn7W3mgPxhU9K/ScQsAP7hUibX39j7fakFPskvXusvfa0b4Q"
crossorigin=
"anonymous"
></script>
<script
src=
"https://cdn.jsdelivr.net/npm/bootstrap@4.0.0/dist/js/bootstrap.min.js"
integrity=
"sha384-JZR6Spejh4U02d8jOt6vLEHfe/JQGiRRSQQxSfFWpi1MquVdAyjUar5+76PVCmYl"
crossorigin=
"anonymous"
></script>
<script
src=
"https://kit.fontawesome.com/51d1fadef3.js"
crossorigin=
"anonymous"
></script>
<script
src=
"/js/main.js"
></script>
</body>
</html>
SkuciSe/src/main/resources/templates/password-edit.html
View file @
1c03793a
...
@@ -46,6 +46,20 @@
...
@@ -46,6 +46,20 @@
<span
class=
"sr-only"
>
(current)
</span>
<span
class=
"sr-only"
>
(current)
</span>
</a>
</a>
</li>
</li>
<li
class=
"nav-item active"
>
<a
class=
"nav-link"
th:href=
"@{/onama}"
>
<i
class=
"fa-sharp fa-solid fa-address-card"
></i>
<p>
O nama
</p>
<span
class=
"sr-only"
>
(current)
</span>
</a>
</li>
<li
class=
"nav-item active"
>
<a
class=
"nav-link"
th:href=
"@{/portfolio}"
>
<i
class=
"fa-solid fa-briefcase"
></i>
<p>
Portfolio
</p>
<span
class=
"sr-only"
>
(current)
</span>
</a>
</li>
</ul>
</ul>
<form
class=
"form-inline my-2 my-lg-0"
th:if=
"${loggedUser != null}"
>
<form
class=
"form-inline my-2 my-lg-0"
th:if=
"${loggedUser != null}"
>
<button
type=
"button"
class=
"btn btn-primary btn-md mr-2"
><i
class=
"fa-solid fa-plus"
></i>
Postavite
<button
type=
"button"
class=
"btn btn-primary btn-md mr-2"
><i
class=
"fa-solid fa-plus"
></i>
Postavite
...
@@ -134,8 +148,8 @@
...
@@ -134,8 +148,8 @@
<div
class=
"col-xl-2 col-md-4 col-sm-4 col-12"
><h6
class=
"mb-3 mb-lg-4 bold-text "
><b>
MENI
</b><i
class=
"fa-solid fa-bars"
></i></h6>
<div
class=
"col-xl-2 col-md-4 col-sm-4 col-12"
><h6
class=
"mb-3 mb-lg-4 bold-text "
><b>
MENI
</b><i
class=
"fa-solid fa-bars"
></i></h6>
<ul
class=
"list-unstyled"
>
<ul
class=
"list-unstyled"
>
<li><a
href=
"/index"
style=
"text-decoration: none;color:#627482;"
onmouseover=
"this.style.color='#989c9e'"
onMouseOut=
"this.style.color='#627482'"
>
Pocetna
</a></li>
<li><a
href=
"/index"
style=
"text-decoration: none;color:#627482;"
onmouseover=
"this.style.color='#989c9e'"
onMouseOut=
"this.style.color='#627482'"
>
Pocetna
</a></li>
<li><a
href=
"/
index
"
style=
"text-decoration: none;color:#627482;"
onmouseover=
"this.style.color='#989c9e'"
onMouseOut=
"this.style.color='#627482'"
>
O nama
</a></li>
<li><a
href=
"/
onama
"
style=
"text-decoration: none;color:#627482;"
onmouseover=
"this.style.color='#989c9e'"
onMouseOut=
"this.style.color='#627482'"
>
O nama
</a></li>
<li><a
href=
"/
index
"
style=
"text-decoration: none;color:#627482;"
onmouseover=
"this.style.color='#989c9e'"
onMouseOut=
"this.style.color='#627482'"
>
Portfolio
</a></li>
<li><a
href=
"/
portfolio
"
style=
"text-decoration: none;color:#627482;"
onmouseover=
"this.style.color='#989c9e'"
onMouseOut=
"this.style.color='#627482'"
>
Portfolio
</a></li>
</ul>
</ul>
</div>
</div>
<div
class=
"col-xl-2 col-md-4 col-sm-4 col-12"
><h6
<div
class=
"col-xl-2 col-md-4 col-sm-4 col-12"
><h6
...
...
SkuciSe/src/main/resources/templates/portfolio.html
0 → 100644
View file @
1c03793a
<!DOCTYPE html>
<html
lang=
"en"
xmlns=
"http://www.w3.org/1999/html"
xmlns:th=
"http://www.w3.org/1999/xhtml"
>
<head>
<meta
charset=
"utf-8"
/>
<meta
name=
"viewport"
content=
"width=device-width, initial-scale=1, shrink-to-fit=no"
/>
<meta
name=
"description"
content=
""
/>
<meta
name=
"author"
content=
""
/>
<title>
SkuciSe
</title>
<link
rel=
"shortcut icon"
type=
"image/x-icon"
href=
"/images/logo.ico"
/>
<link
href=
'https://fonts.googleapis.com/css?family=Jost'
rel=
'stylesheet'
>
<link
href=
"//maxcdn.bootstrapcdn.com/bootstrap/4.1.1/css/bootstrap.min.css"
rel=
"stylesheet"
id=
"bootstrap-css"
>
<link
rel=
"stylesheet"
href=
"https://cdnjs.cloudflare.com/ajax/libs/animate.css/4.1.1/animate.min.css"
/>
<!-- Favicon-->
<link
rel=
"icon"
type=
"image/x-icon"
href=
"assets/favicon.ico"
/>
<!-- CSS only -->
<link
href=
"https://cdn.jsdelivr.net/npm/bootstrap@5.2.0/dist/css/bootstrap.min.css"
rel=
"stylesheet"
integrity=
"sha384-gH2yIJqKdNHPEq0n4Mqa/HGKIhSkIHeL5AyhkYV8i59U5AR6csBvApHHNl/vI1Bx"
crossorigin=
"anonymous"
>
<!-- Core theme CSS (includes Bootstrap)-->
<link
href=
"/css/style.css"
rel=
"stylesheet"
/>
</head>
<body
th:object=
"${loggedUser}"
>
<nav
class=
"navbar navbar-icon-top navbar-expand-lg p-3"
>
<a
class=
"navbar-brand"
href=
"#"
>
</a>
<button
class=
"navbar-toggler"
type=
"button"
data-toggle=
"collapse"
data-target=
"#navbarSupportedContent"
aria-controls=
"navbarSupportedContent"
aria-expanded=
"false"
aria-label=
"Toggle navigation"
>
<span
class=
"navbar-toggler-icon"
></span>
</button>
<div
class=
"collapse navbar-collapse"
id=
"navbarSupportedContent"
>
<ul
class=
"navbar-nav mr-auto"
>
<li
class=
"nav-item active"
>
<a
class=
"nav-link"
th:href=
"@{/index}"
>
<i
class=
"fa fa-home"
></i>
Pocetna
<span
class=
"sr-only"
>
(current)
</span>
</a>
</li>
<li
class=
"nav-item active"
>
<a
class=
"nav-link"
href=
"/lista-oglasa"
>
<i
class=
"fa fa-poll-h"
></i>
Lista oglasa
<span
class=
"sr-only"
>
(current)
</span>
</a>
</li>
<li
class=
"nav-item active"
>
<a
class=
"nav-link"
th:href=
"@{/onama}"
>
<i
class=
"fa-sharp fa-solid fa-address-card"
></i>
<p>
O nama
</p>
<span
class=
"sr-only"
>
(current)
</span>
</a>
</li>
<li
class=
"nav-item active"
>
<a
class=
"nav-link"
th:href=
"@{/portfolio}"
>
<i
class=
"fa-solid fa-briefcase"
></i>
<p>
Portfolio
</p>
<span
class=
"sr-only"
>
(current)
</span>
</a>
</li>
</ul>
<form
class=
"form-inline my-2 my-lg-0"
th:if=
"${loggedUser != null}"
>
<a
th:href=
"@{/novi-oglas}"
>
<button
type=
"button"
class=
"btn btn-primary btn-md mr-2"
><i
class=
"fa-solid fa-plus"
></i>
Postavite
novi oglas
</button>
</a>
</form>
<ul
class=
"navbar-nav"
>
<li
class=
"nav-item"
th:if=
"${loggedUser == null}"
>
<a
th:href=
"@{/login}"
><i
class=
"fas fa-sign-in-alt"
style=
"color:#495056"
></i><span
style=
"padding:10px;color:#495056"
>
Prijavi se
</span></a>
</li>
<li
class=
"nav-item"
th:if=
"${loggedUser == null}"
>
<a
th:href=
"@{/register}"
><i
class=
"fa-solid fa-circle-user"
style=
"color:#495056"
></i><span
style=
"padding:10px;color:#495056"
>
Registruj se
</span></a>
</li>
<li
th:if=
"${loggedUser != null}"
>
<div
class=
"dropdown mr-4"
>
<button
class=
"btn btn-secondary dropdown-toggle round"
type=
"button"
id=
"dropdownMenuButton"
data-toggle=
"dropdown"
aria-haspopup=
"true"
aria-expanded=
"false"
>
<i
class=
"fa-solid fa-circle-user"
></i><span
style=
"padding:10px;"
th:text=
"${loggedUser.getKorisnik().getIme()}"
></span>
</button>
<div
class=
"dropdown-menu"
aria-labelledby=
"dropdownMenuButton"
>
<a
class=
"dropdown-item"
th:href=
"@{/profile}"
>
Moj Profil
</a>
<a
class=
"dropdown-item"
th:href=
"@{/profile/moji-oglasi}"
>
Moji Oglasi
</a>
<a
class=
"dropdown-item"
th:href=
"@{/profile/moji-zahtevi}"
>
Moji Zahtevi
</a>
<a
th:if=
"${loggedUser.getKorisnik().getTipId() == 2}"
class=
"dropdown-item"
th:href=
"@{/lista-korisnika}"
>
Lista Profila
</a>
<form
th:action=
"@{/logout}"
method=
"post"
id=
"my_form"
class=
"dropdown-item"
>
<a
href=
"#"
onclick=
"document.getElementById('my_form').submit(); return false;"
><i
class=
"fas fa-sign-in-alt"
></i><span
style=
"padding:5px;"
>
Odjavi se
</span></a>
</form>
</div>
</div>
</li>
</ul>
</div>
</nav>
<header
class=
"masthead pozadinaSlika"
>
<div
class=
"container d-flex justify-content-center align-items-center"
style=
"height: 450px;font-size: 27px"
>
<div
class=
"row justify-content-center w-100"
>
<div
class=
"col d-flex justify-content-center align-items-center"
>
<div
class=
"text-center text-white w-100"
>
<h1
class=
"mb-5"
style=
"color:white"
>
Pretrazite oglase
</h1>
<form
class=
"form-subscribe"
method=
"GET"
th:action=
"@{/lista-oglasa}"
>
<div
class=
"row"
>
<div
class=
"col-3"
>
<select
class=
"form-select"
name=
"lokacijaId"
id=
"lokacijeopt"
>
<option
value=
""
selected
>
Sve lokacije
</option>
<option
th:each=
"lokacija: ${lokacije}"
th:value=
"${lokacija.getLokacijaId()}"
th:text=
"${lokacija.getNaziv()}"
></option>
</select>
</div>
<div
class=
"col-3"
>
<input
type=
"radio"
name=
"vrstaOglasaId"
id=
"radiodugme1"
value=
"1"
>
<label
for=
"radiodugme1"
style=
"color:white"
>
Prodaja
</label>
</div>
<div
class=
"col-3"
>
<input
type=
"radio"
name=
"vrstaOglasaId"
id=
"radiodugme2"
value=
"2"
>
<label
for=
"radiodugme2"
style=
"color:white"
>
Iznajmljivanje
</label>
</div>
<div
class=
"col-3"
>
<button
class=
"btn btn-secondary btn-lg"
id=
"submitButton"
type=
"submit"
>
Pretrazi
</button>
</div>
</div>
</form>
</div>
</div>
</div>
</div>
</header>
<section
class=
"features-icons bg-light text-center"
>
<div
class=
"container d-flex justify-content-center align-items-center"
style=
"height: 400px"
>
<div
class=
"row"
>
<div
class=
"col-lg-4"
>
<div
class=
"features-icons-item mx-auto mb-5 mb-lg-0 mb-lg-3"
>
<div
class=
"features-icons-icon d-flex"
><i
class=
"bi-window m-auto text-primary"
></i></div>
<img
src=
"https://d2dlxvmcs24r4u.cloudfront.net/modules/portals/template1/images/box-1.png"
height=
"60"
>
<h3>
Potpuna responzivnost
</h3>
<p
class=
"lead mb-0"
>
Sajt ce izgledati sjajno na svakom uredjaju, nebitno od velicine
</p>
</div>
</div>
<div
class=
"col-lg-4"
>
<div
class=
"features-icons-item mx-auto mb-5 mb-lg-0 mb-lg-3"
>
<div
class=
"features-icons-icon d-flex"
><i
class=
"bi-layers m-auto text-primary"
></i></div>
<img
src=
"https://d2dlxvmcs24r4u.cloudfront.net/modules/portals/template1/images/box-2.png"
height=
"60"
>
<h3>
Pronadji najbolji dom u Srbiji
</h3>
<p
class=
"lead mb-0"
>
Pronadji najbolji dom u Srbiji popunjavanjem velikog broja kriterijuma i filtera po vasoj zelji
</p>
</div>
</div>
<div
class=
"col-lg-4"
>
<div
class=
"features-icons-item mx-auto mb-0 mb-lg-3"
>
<div
class=
"features-icons-icon d-flex"
><i
class=
"bi-terminal m-auto text-primary"
></i></div>
<img
src=
"https://d2dlxvmcs24r4u.cloudfront.net/modules/portals/template1/images/box-3.png"
height=
"60"
>
<h3>
Nekretnine na mapi
</h3>
<p
class=
"lead mb-0"
>
Pogledajte rezultate pretrage na mapi i otkrijte dostupne nekretnine na osnovu njihove tačne lokacije.
</p>
</div>
</div>
</div>
</div>
</section>
<div
class=
"container-fluid pb-0 mb-0 justify-content-center text-light "
>
<footer>
<div
class=
"row my-5 justify-content-center py-5"
>
<div
class=
"col-11"
>
<div
class=
"row "
>
<div
class=
"col-xl-8 col-md-4 col-sm-4 col-12 my-auto mx-auto a"
><h3
class=
"text-muted mb-md-0 mb-5 bold-text"
>
SkuciSe
</h3></div>
<div
class=
"col-xl-2 col-md-4 col-sm-4 col-12"
><h6
class=
"mb-3 mb-lg-4 bold-text "
><b>
MENI
</b><i
class=
"fa-solid fa-bars"
></i></h6>
<ul
class=
"list-unstyled"
>
<li><a
href=
"/index"
style=
"text-decoration: none;color:#627482;"
onmouseover=
"this.style.color='#989c9e'"
onMouseOut=
"this.style.color='#627482'"
>
Pocetna
</a></li>
<li><a
th:href=
"@{/onama}"
style=
"text-decoration: none;color:#627482;"
onmouseover=
"this.style.color='#989c9e'"
onMouseOut=
"this.style.color='#627482'"
>
O nama
</a></li>
<li><a
href=
"/portfolio"
style=
"text-decoration: none;color:#627482;"
onmouseover=
"this.style.color='#989c9e'"
onMouseOut=
"this.style.color='#627482'"
>
Portfolio
</a></li>
</ul>
</div>
<div
class=
"col-xl-2 col-md-4 col-sm-4 col-12"
><h6
class=
"mb-3 mb-lg-4 text-muted bold-text mt-sm-0 mt-5"
><b>
ADRESA
</b><i
class=
"fa-solid fa-map-pin"
></i></h6>
<p><a
href=
"http://maps.google.com/maps?daddr=Radoja Domanovića 12 Kragujevac&"
style=
"text-decoration: none;color:#627482;"
onmouseover=
"this.style.color='#989c9e'"
onMouseOut=
"this.style.color='#627482'"
>
Radoja Domanovića 12 Kragujevac 34000
</a></p>
</div>
<div
class=
"row "
>
<div
class=
"col-xl-8 col-md-4 col-sm-4 col-auto my-md-0 mt-5 order-sm-1 order-3 align-self-end"
><p
class=
"social text-muted mb-0 pb-0 bold-text"
><span
class=
"mx-2"
><i
class=
"fa fa-facebook"
aria-hidden=
"true"
></i></span>
<span
class=
"mx-2"
><i
class=
"fa fa-linkedin-square"
aria-hidden=
"true"
></i></span>
<span
class=
"mx-2"
><i
class=
"fa fa-twitter"
aria-hidden=
"true"
></i></span>
<span
class=
"mx-2"
><i
class=
"fa fa-instagram"
aria-hidden=
"true"
></i></span></p><small
class=
"rights"
><span>
®
</span>
SkuciSe. Sva prava zadrzana.
</small></div>
<div
class=
"col-xl-2 col-md-4 col-sm-4 col-auto order-1 align-self-end "
><h6
class=
"mt-55 mt-2 text-muted bold-text"
><b>
Korisnicki centar
</b><i
class=
"fa-solid fa-phone"
></i></h6><small>
<span><i
class=
"fa fa-envelope"
aria-hidden=
"true"
></i></span><a
href=
"mailto:someone@yoursite.com"
style=
"text-decoration: none;color:#627482;"
onmouseover=
"this.style.color='#989c9e'"
onMouseOut=
"this.style.color='#627482'"
>
skucise@gmail.com
</a>
</small></div>
</div>
</div>
</div>
</footer>
</div>
<!-- JavaScript Bundle with Popper -->
<script
src=
"//maxcdn.bootstrapcdn.com/bootstrap/4.1.1/js/bootstrap.min.js"
></script>
<script
src=
"//cdnjs.cloudflare.com/ajax/libs/jquery/3.2.1/jquery.min.js"
></script>
<script
src=
"https://code.jquery.com/jquery-3.2.1.slim.min.js"
integrity=
"sha384-KJ3o2DKtIkvYIK3UENzmM7KCkRr/rE9/Qpg6aAZGJwFDMVNA/GpGFF93hXpG5KkN"
crossorigin=
"anonymous"
></script>
<script
src=
"https://cdn.jsdelivr.net/npm/popper.js@1.12.9/dist/umd/popper.min.js"
integrity=
"sha384-ApNbgh9B+Y1QKtv3Rn7W3mgPxhU9K/ScQsAP7hUibX39j7fakFPskvXusvfa0b4Q"
crossorigin=
"anonymous"
></script>
<script
src=
"https://cdn.jsdelivr.net/npm/bootstrap@4.0.0/dist/js/bootstrap.min.js"
integrity=
"sha384-JZR6Spejh4U02d8jOt6vLEHfe/JQGiRRSQQxSfFWpi1MquVdAyjUar5+76PVCmYl"
crossorigin=
"anonymous"
></script>
<script
src=
"https://kit.fontawesome.com/51d1fadef3.js"
crossorigin=
"anonymous"
></script>
<script
src=
"/js/main.js"
></script>
</body>
</html>
SkuciSe/src/main/resources/templates/profile-edit.html
View file @
1c03793a
...
@@ -46,6 +46,20 @@
...
@@ -46,6 +46,20 @@
<span
class=
"sr-only"
>
(current)
</span>
<span
class=
"sr-only"
>
(current)
</span>
</a>
</a>
</li>
</li>
<li
class=
"nav-item active"
>
<a
class=
"nav-link"
th:href=
"@{/onama}"
>
<i
class=
"fa-sharp fa-solid fa-address-card"
></i>
<p>
O nama
</p>
<span
class=
"sr-only"
>
(current)
</span>
</a>
</li>
<li
class=
"nav-item active"
>
<a
class=
"nav-link"
th:href=
"@{/portfolio}"
>
<i
class=
"fa-solid fa-briefcase"
></i>
<p>
Portfolio
</p>
<span
class=
"sr-only"
>
(current)
</span>
</a>
</li>
</ul>
</ul>
<form
class=
"form-inline my-2 my-lg-0"
th:if=
"${loggedUser != null}"
>
<form
class=
"form-inline my-2 my-lg-0"
th:if=
"${loggedUser != null}"
>
<a
th:href=
"@{/novi-oglas}"
>
<a
th:href=
"@{/novi-oglas}"
>
...
@@ -157,8 +171,8 @@
...
@@ -157,8 +171,8 @@
<div
class=
"col-xl-2 col-md-4 col-sm-4 col-12"
><h6
class=
"mb-3 mb-lg-4 bold-text "
><b>
MENI
</b><i
class=
"fa-solid fa-bars"
></i></h6>
<div
class=
"col-xl-2 col-md-4 col-sm-4 col-12"
><h6
class=
"mb-3 mb-lg-4 bold-text "
><b>
MENI
</b><i
class=
"fa-solid fa-bars"
></i></h6>
<ul
class=
"list-unstyled"
>
<ul
class=
"list-unstyled"
>
<li><a
href=
"/index"
style=
"text-decoration: none;color:#627482;"
onmouseover=
"this.style.color='#989c9e'"
onMouseOut=
"this.style.color='#627482'"
>
Pocetna
</a></li>
<li><a
href=
"/index"
style=
"text-decoration: none;color:#627482;"
onmouseover=
"this.style.color='#989c9e'"
onMouseOut=
"this.style.color='#627482'"
>
Pocetna
</a></li>
<li><a
href=
"/
index
"
style=
"text-decoration: none;color:#627482;"
onmouseover=
"this.style.color='#989c9e'"
onMouseOut=
"this.style.color='#627482'"
>
O nama
</a></li>
<li><a
href=
"/
onama
"
style=
"text-decoration: none;color:#627482;"
onmouseover=
"this.style.color='#989c9e'"
onMouseOut=
"this.style.color='#627482'"
>
O nama
</a></li>
<li><a
href=
"/
index
"
style=
"text-decoration: none;color:#627482;"
onmouseover=
"this.style.color='#989c9e'"
onMouseOut=
"this.style.color='#627482'"
>
Portfolio
</a></li>
<li><a
href=
"/
portfolio
"
style=
"text-decoration: none;color:#627482;"
onmouseover=
"this.style.color='#989c9e'"
onMouseOut=
"this.style.color='#627482'"
>
Portfolio
</a></li>
</ul>
</ul>
</div>
</div>
<div
class=
"col-xl-2 col-md-4 col-sm-4 col-12"
><h6
<div
class=
"col-xl-2 col-md-4 col-sm-4 col-12"
><h6
...
...
SkuciSe/src/main/resources/templates/profile.html
View file @
1c03793a
...
@@ -46,6 +46,20 @@
...
@@ -46,6 +46,20 @@
<span
class=
"sr-only"
>
(current)
</span>
<span
class=
"sr-only"
>
(current)
</span>
</a>
</a>
</li>
</li>
<li
class=
"nav-item active"
>
<a
class=
"nav-link"
th:href=
"@{/onama}"
>
<i
class=
"fa-sharp fa-solid fa-address-card"
></i>
<p>
O nama
</p>
<span
class=
"sr-only"
>
(current)
</span>
</a>
</li>
<li
class=
"nav-item active"
>
<a
class=
"nav-link"
th:href=
"@{/portfolio}"
>
<i
class=
"fa-solid fa-briefcase"
></i>
<p>
Portfolio
</p>
<span
class=
"sr-only"
>
(current)
</span>
</a>
</li>
</ul>
</ul>
<form
class=
"form-inline my-2 my-lg-0"
th:if=
"${loggedUser != null}"
>
<form
class=
"form-inline my-2 my-lg-0"
th:if=
"${loggedUser != null}"
>
<a
th:href=
"@{/novi-oglas}"
><button
type=
"button"
class=
"btn btn-primary btn-md mr-2"
><i
class=
"fa-solid fa-plus"
></i>
Postavite
<a
th:href=
"@{/novi-oglas}"
><button
type=
"button"
class=
"btn btn-primary btn-md mr-2"
><i
class=
"fa-solid fa-plus"
></i>
Postavite
...
@@ -159,8 +173,8 @@
...
@@ -159,8 +173,8 @@
<div
class=
"col-xl-2 col-md-4 col-sm-4 col-12"
><h6
class=
"mb-3 mb-lg-4 bold-text "
><b>
MENI
</b><i
class=
"fa-solid fa-bars"
></i></h6>
<div
class=
"col-xl-2 col-md-4 col-sm-4 col-12"
><h6
class=
"mb-3 mb-lg-4 bold-text "
><b>
MENI
</b><i
class=
"fa-solid fa-bars"
></i></h6>
<ul
class=
"list-unstyled"
>
<ul
class=
"list-unstyled"
>
<li><a
href=
"/index"
style=
"text-decoration: none;color:#627482;"
onmouseover=
"this.style.color='#989c9e'"
onMouseOut=
"this.style.color='#627482'"
>
Pocetna
</a></li>
<li><a
href=
"/index"
style=
"text-decoration: none;color:#627482;"
onmouseover=
"this.style.color='#989c9e'"
onMouseOut=
"this.style.color='#627482'"
>
Pocetna
</a></li>
<li><a
href=
"/
index
"
style=
"text-decoration: none;color:#627482;"
onmouseover=
"this.style.color='#989c9e'"
onMouseOut=
"this.style.color='#627482'"
>
O nama
</a></li>
<li><a
href=
"/
onama
"
style=
"text-decoration: none;color:#627482;"
onmouseover=
"this.style.color='#989c9e'"
onMouseOut=
"this.style.color='#627482'"
>
O nama
</a></li>
<li><a
href=
"/
index
"
style=
"text-decoration: none;color:#627482;"
onmouseover=
"this.style.color='#989c9e'"
onMouseOut=
"this.style.color='#627482'"
>
Portfolio
</a></li>
<li><a
href=
"/
portfolio
"
style=
"text-decoration: none;color:#627482;"
onmouseover=
"this.style.color='#989c9e'"
onMouseOut=
"this.style.color='#627482'"
>
Portfolio
</a></li>
</ul>
</ul>
</div>
</div>
<div
class=
"col-xl-2 col-md-4 col-sm-4 col-12"
><h6
<div
class=
"col-xl-2 col-md-4 col-sm-4 col-12"
><h6
...
...
SkuciSe/src/main/resources/templates/register.html
View file @
1c03793a
...
@@ -46,6 +46,20 @@
...
@@ -46,6 +46,20 @@
<span
class=
"sr-only"
>
(current)
</span>
<span
class=
"sr-only"
>
(current)
</span>
</a>
</a>
</li>
</li>
<li
class=
"nav-item active"
>
<a
class=
"nav-link"
th:href=
"@{/onama}"
>
<i
class=
"fa-sharp fa-solid fa-address-card"
></i>
<p>
O nama
</p>
<span
class=
"sr-only"
>
(current)
</span>
</a>
</li>
<li
class=
"nav-item active"
>
<a
class=
"nav-link"
th:href=
"@{/portfolio}"
>
<i
class=
"fa-solid fa-briefcase"
></i>
<p>
Portfolio
</p>
<span
class=
"sr-only"
>
(current)
</span>
</a>
</li>
</ul>
</ul>
<form
class=
"form-inline my-2 my-lg-0"
th:if=
"${loggedUser != null}"
>
<form
class=
"form-inline my-2 my-lg-0"
th:if=
"${loggedUser != null}"
>
<button
type=
"button"
class=
"btn btn-primary btn-md mr-2"
><i
class=
"fa-solid fa-plus"
></i>
Postavite
<button
type=
"button"
class=
"btn btn-primary btn-md mr-2"
><i
class=
"fa-solid fa-plus"
></i>
Postavite
...
@@ -171,8 +185,8 @@
...
@@ -171,8 +185,8 @@
<div
class=
"col-xl-2 col-md-4 col-sm-4 col-12"
><h6
class=
"mb-3 mb-lg-4 bold-text "
><b>
MENI
</b><i
class=
"fa-solid fa-bars"
></i></h6>
<div
class=
"col-xl-2 col-md-4 col-sm-4 col-12"
><h6
class=
"mb-3 mb-lg-4 bold-text "
><b>
MENI
</b><i
class=
"fa-solid fa-bars"
></i></h6>
<ul
class=
"list-unstyled"
>
<ul
class=
"list-unstyled"
>
<li><a
href=
"/index"
style=
"text-decoration: none;color:#627482;"
onmouseover=
"this.style.color='#989c9e'"
onMouseOut=
"this.style.color='#627482'"
>
Pocetna
</a></li>
<li><a
href=
"/index"
style=
"text-decoration: none;color:#627482;"
onmouseover=
"this.style.color='#989c9e'"
onMouseOut=
"this.style.color='#627482'"
>
Pocetna
</a></li>
<li><a
href=
"/
index
"
style=
"text-decoration: none;color:#627482;"
onmouseover=
"this.style.color='#989c9e'"
onMouseOut=
"this.style.color='#627482'"
>
O nama
</a></li>
<li><a
href=
"/
onama
"
style=
"text-decoration: none;color:#627482;"
onmouseover=
"this.style.color='#989c9e'"
onMouseOut=
"this.style.color='#627482'"
>
O nama
</a></li>
<li><a
href=
"/
index
"
style=
"text-decoration: none;color:#627482;"
onmouseover=
"this.style.color='#989c9e'"
onMouseOut=
"this.style.color='#627482'"
>
Portfolio
</a></li>
<li><a
href=
"/
portfolio
"
style=
"text-decoration: none;color:#627482;"
onmouseover=
"this.style.color='#989c9e'"
onMouseOut=
"this.style.color='#627482'"
>
Portfolio
</a></li>
</ul>
</ul>
</div>
</div>
<div
class=
"col-xl-2 col-md-4 col-sm-4 col-12"
><h6
<div
class=
"col-xl-2 col-md-4 col-sm-4 col-12"
><h6
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment