Index: Prototype Application/Paw5/src/main/java/finki/paw5/web/controllers/PostController.java
===================================================================
--- Prototype Application/Paw5/src/main/java/finki/paw5/web/controllers/PostController.java	(revision 9ee306ba77650e4e867b6cee971075b8b5c8fcbf)
+++ Prototype Application/Paw5/src/main/java/finki/paw5/web/controllers/PostController.java	(revision 6941fac7c063e28adfadb9ca5ab944223d81cbfc)
@@ -28,5 +28,5 @@
     }
 
-    @GetMapping("create-post")
+    @GetMapping("/create-post")
     public String get(Model model) {
         //TODO: vakvo ama za lista so pets
@@ -36,5 +36,5 @@
     }
 
-    @PostMapping("submit-post")
+    @PostMapping("/submit-post")
     public String savePost(@RequestParam(required = false) String name,
                            @RequestParam String gender,
Index: Prototype Application/Paw5/src/main/resources/templates/create-post.html
===================================================================
--- Prototype Application/Paw5/src/main/resources/templates/create-post.html	(revision 9ee306ba77650e4e867b6cee971075b8b5c8fcbf)
+++ Prototype Application/Paw5/src/main/resources/templates/create-post.html	(revision 6941fac7c063e28adfadb9ca5ab944223d81cbfc)
@@ -7,6 +7,35 @@
     <meta charset="UTF-8">
     <title>Create a post</title>
+    <link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/bootstrap/4.3.1/css/bootstrap.min.css" integrity="sha384-ggOyR0iXCbMQv3Xipma34MD+dH/1fQ784/j6cY/iJTQUOhcWr7x9JvoRxT2MZw1T" crossorigin="anonymous">
+    <script src="https://code.jquery.com/jquery-3.3.1.slim.min.js" integrity="sha384-q8i/X+965DzO0rT7abK41JStQIAqVgRVzpbzo5smXKp4YfRvH+8abtTE1Pi6jizo" crossorigin="anonymous"></script>
+    <script src="https://cdnjs.cloudflare.com/ajax/libs/popper.js/1.14.7/umd/popper.min.js" integrity="sha384-UO2eT0CpHqdSJQ6hJty5KVphtPhzWj9WO1clHTMGa3JDZwrnQq4sF86dIHNDz0W1" crossorigin="anonymous"></script>
+    <script src="https://stackpath.bootstrapcdn.com/bootstrap/4.3.1/js/bootstrap.min.js" integrity="sha384-JjSmVgyd0p3pXB1rRibZUAYoIIy6OrQ6VrjIEaFf/nJGzIxFDsf4x0xIM+B07jRM" crossorigin="anonymous"></script>
 </head>
 <body>
+<header>
+    <nav class="navbar navbar-expand-md navbar-dark bg-dark">
+        <div class="container">
+            <a class="navbar-brand" href="/home">Paw 5</a>
+            <button class="navbar-toggler" type="button" data-toggle="collapse" data-target="#navbarsExampleDefault"
+                    aria-controls="navbarsExampleDefault" aria-expanded="false" aria-label="Toggle navigation">
+                <span class="navbar-toggler-icon"></span>
+            </button>
+
+            <div class="collapse navbar-collapse justify-content-end" id="navbarsExampleDefault">
+                <ul class="navbar-nav m-auto">
+                    <li class="nav-item m-auto">
+                        <a class="nav-link active" href="/home/aboutUs">About us</a>
+                    </li>
+                    <li class="nav-item m-auto">
+                        <a class="nav-link active" href="/login">Login</a>
+                    </li>
+                    <li class="nav-item m-auto">
+                        <a class="nav-link active" href="/register">Register</a>
+                    </li>
+                </ul>
+            </div>
+        </div>
+    </nav>
+</header>
     <h1>Create post</h1>
 <form th:action="@{/submit-post}" method="post">
Index: Prototype Application/Paw5/src/main/resources/templates/home.html
===================================================================
--- Prototype Application/Paw5/src/main/resources/templates/home.html	(revision 9ee306ba77650e4e867b6cee971075b8b5c8fcbf)
+++ Prototype Application/Paw5/src/main/resources/templates/home.html	(revision 6941fac7c063e28adfadb9ca5ab944223d81cbfc)
@@ -35,5 +35,9 @@
   </nav>
 </header>
-
+<div>
+  <form method="get" th:action="@{'/create-post'}">
+    <button id="submit" type="submit">Create an Adoption Post</button>
+  </form>
+</div>
 <div>
   <h1>Welcome to Paw 5</h1>
