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
Expand all
Show whitespace changes
Inline
Side-by-side
Showing
14 changed files
with
187 additions
and
20 deletions
+187
-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
+0
-0
SkuciSe/src/main/resources/templates/password-edit.html
+16
-2
SkuciSe/src/main/resources/templates/portfolio.html
+0
-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
This diff is collapsed.
Click to expand it.
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
This diff is collapsed.
Click to expand it.
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