Index: trip-planner-front/src/app/create-initial-planner/create-initial-planner.component.html
===================================================================
--- trip-planner-front/src/app/create-initial-planner/create-initial-planner.component.html	(revision 6fe77af06f1c4e777095cd5ea48f5387322a3f32)
+++ trip-planner-front/src/app/create-initial-planner/create-initial-planner.component.html	(revision 571e0df9a7a5e798c9941a85842f785177bedbbd)
@@ -1,18 +1,16 @@
-  <div mat-dialog-content>
-    <p>Planner name</p>
-    <mat-form-field appearance="fill">
-      <input matInput  type="text" [(ngModel)]="plannerDto.name" name="plannerName" placeholder="Planner name">
-     
-    </mat-form-field>
-    <p>Planner description</p>
-    <mat-form-field appearance="fill">
-      <textarea matInput  name="description" [(ngModel)]="plannerDto.description" type="text"
-        placeholder="Planner description"></textarea>
-    </mat-form-field>
-  </div>
-  <div mat-dialog-actions>
-    <button pButton pRipple type="button" label="Save" 
-      class="p-button-outlined p-button-rounded p-button-help" (click)="onFormSubmitPlanner(plannerDto)"></button>
-  </div>
+<div mat-dialog-content>
+  <p>Planner name</p>
+  <mat-form-field appearance="fill">
+    <input matInput type="text" [(ngModel)]="plannerDto.name" name="plannerName" placeholder="Planner name">
 
- 
+  </mat-form-field>
+  <p>Planner description</p>
+  <mat-form-field appearance="fill">
+    <textarea matInput name="description" [(ngModel)]="plannerDto.description" type="text"
+      placeholder="Planner description"></textarea>
+  </mat-form-field>
+</div>
+<div mat-dialog-actions>
+  <button pButton pRipple type="button" label="Save" class="p-button-outlined p-button-rounded p-button-help"
+    (click)="onFormSubmitPlanner(plannerDto)"></button>
+</div>
Index: trip-planner-front/src/app/location/add-location-to-planner-panel/add-location-to-planner-panel.component.html
===================================================================
--- trip-planner-front/src/app/location/add-location-to-planner-panel/add-location-to-planner-panel.component.html	(revision 6fe77af06f1c4e777095cd5ea48f5387322a3f32)
+++ trip-planner-front/src/app/location/add-location-to-planner-panel/add-location-to-planner-panel.component.html	(revision 571e0df9a7a5e798c9941a85842f785177bedbbd)
@@ -12,8 +12,7 @@
             <td>
                 <button pButton pRipple type="button" icon="pi pi-heart" class="p-button-rounded p-button-help"
-                    (click)="selectPlanner(planner)" ></button>
+                    (click)="selectPlanner(planner)"></button>
             </td>
         </tr>
     </ng-template>
 </p-table>
-
Index: trip-planner-front/src/app/location/add-location/add-location.component.ts
===================================================================
--- trip-planner-front/src/app/location/add-location/add-location.component.ts	(revision 6fe77af06f1c4e777095cd5ea48f5387322a3f32)
+++ trip-planner-front/src/app/location/add-location/add-location.component.ts	(revision 571e0df9a7a5e798c9941a85842f785177bedbbd)
@@ -114,6 +114,5 @@
       if(this.name !== null && this.desc !== null && this.address !== null
         && this.trivia != null  && this.priority !== null && this.cityId !== 0 && this.regionId !== 0){
-          this.isCompleted = true;
-        
+          this.isCompleted = true;        
           this.locationService.save(this.locationDto).subscribe(
             data => {
Index: trip-planner-front/src/app/location/location.component.html
===================================================================
--- trip-planner-front/src/app/location/location.component.html	(revision 6fe77af06f1c4e777095cd5ea48f5387322a3f32)
+++ trip-planner-front/src/app/location/location.component.html	(revision 571e0df9a7a5e798c9941a85842f785177bedbbd)
@@ -4,5 +4,6 @@
 <p-toast></p-toast>
 <h3>Here are all locations</h3>
-<button pButton pRipple type="button" icon="pi pi-bell" class="p-button-rounded p-button-warning" label="Back to my Planners" (click)="onClickBackToMyPlanners()"></button>
+<button pButton pRipple type="button" icon="pi pi-bell" class="p-button-rounded p-button-warning"
+  label="Back to my Planners" (click)="onClickBackToMyPlanners()"></button>
 <table class="table">
   <thead>
@@ -28,3 +29,2 @@
   </tbody>
 </table>
-
Index: trip-planner-front/src/app/locations-form/locations-form.component.ts
===================================================================
--- trip-planner-front/src/app/locations-form/locations-form.component.ts	(revision 6fe77af06f1c4e777095cd5ea48f5387322a3f32)
+++ trip-planner-front/src/app/locations-form/locations-form.component.ts	(revision 571e0df9a7a5e798c9941a85842f785177bedbbd)
@@ -130,5 +130,4 @@
 
 
-
   createMyPlanner() {
     this.categoryIds = this.chipsSeletion.join(',');
Index: trip-planner/src/main/java/finki/diplomska/tripplanner/models/dto/LocationDto.java
===================================================================
--- trip-planner/src/main/java/finki/diplomska/tripplanner/models/dto/LocationDto.java	(revision 6fe77af06f1c4e777095cd5ea48f5387322a3f32)
+++ trip-planner/src/main/java/finki/diplomska/tripplanner/models/dto/LocationDto.java	(revision 571e0df9a7a5e798c9941a85842f785177bedbbd)
@@ -48,5 +48,4 @@
         this.categories = categories;
     }
-
     public LocationDto() {
     }
Index: trip-planner/src/main/java/finki/diplomska/tripplanner/security/SecurityConfig.java
===================================================================
--- trip-planner/src/main/java/finki/diplomska/tripplanner/security/SecurityConfig.java	(revision 6fe77af06f1c4e777095cd5ea48f5387322a3f32)
+++ trip-planner/src/main/java/finki/diplomska/tripplanner/security/SecurityConfig.java	(revision 571e0df9a7a5e798c9941a85842f785177bedbbd)
@@ -81,9 +81,4 @@
                 .antMatchers("/api/all").permitAll()
                 .antMatchers("/api/places").permitAll()
-                .antMatchers("/create/planner").permitAll()
-                .antMatchers("/create/planner/{id}").permitAll()
-                .antMatchers("/create/locations").permitAll()
-                .antMatchers("/create/trip/locations").permitAll()
-                .antMatchers("/create").permitAll()
                 .anyRequest().authenticated();
         http.addFilterBefore(jwtAuthenticationFilter(), UsernamePasswordAuthenticationFilter.class);
