source: src/main/resources/templates/appBar.html@ d659b83

main
Last change on this file since d659b83 was d659b83, checked in by Marko_Gjorgjievski_201136 <marko.gjorgjievski@…>, 2 months ago

Commiting the whole project

  • Property mode set to 100644
File size: 1.9 KB
Line 
1<!DOCTYPE html>
2<html lang="en">
3<head>
4 <meta charset="UTF-8">
5 <title>appBar</title>
6
7 <!-- Bootstrap CSS -->
8 <link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/bootstrap/4.3.1/css/bootstrap.min.css"
9 integrity="sha384-ggOyR0iXCbMQv3Xipma34MD+dH/1fQ784/j6cY/iJTQUOhcWr7x9JvoRxT2MZw1T" crossorigin="anonymous">
10
11 <style>
12 /* Custom styles for the app bar */
13 .appbar {
14 background-color: #007bff;
15 padding: 10px;
16 display: flex;
17 justify-content: space-between;
18 align-items: center;
19 }
20
21 .appbar a {
22 color: white;
23 text-decoration: none;
24 margin: 0 10px;
25 }
26
27 .appbar a:hover {
28 text-decoration: underline;
29 }
30 </style>
31</head>
32<body>
33<div class="appbar">
34 <div>
35 <a href="/home">FitnessTrackingApp</a>
36 </div>
37 <div>
38 <a href="/ingredients">Ingredients</a>
39 <a href="/meals">Meals</a>
40 <a href="/exercises">Exercises</a>
41 <a href="/workouts">Workouts</a>
42 <a href="/profile">Profile</a>
43 <a href="/logoutt">Logout</a>
44 </div>
45</div>
46
47<!-- Bootstrap JS and Popper.js (required for Bootstrap) -->
48<script src="https://code.jquery.com/jquery-3.3.1.slim.min.js"
49 integrity="sha384-q8i/X+965DzO0rT7abK41JStQIAqVgRVzpbzo5smXKp4YfRvH+8abtTE1Pi6jizo"
50 crossorigin="anonymous"></script>
51<script src="https://cdnjs.cloudflare.com/ajax/libs/popper.js/1.14.7/umd/popper.min.js"
52 integrity="sha384-UO2eT0CpHqdSJQ6hJty5KVphtPhzWj9WO1clHTMGa3JDZwrnQq4sF86dIHNDz0W1"
53 crossorigin="anonymous"></script>
54<script src="https://stackpath.bootstrapcdn.com/bootstrap/4.3.1/js/bootstrap.min.js"
55 integrity="sha384-JjSmVgyd0p3pXB1rRibZUAYoIIy6OrQ6VrjIEaFf/nJGzIxFDsf4x0xIM+B07jRM"
56 crossorigin="anonymous"></script>
57</body>
58</html>
Note: See TracBrowser for help on using the repository browser.