source: src/main/resources/templates/potvrdaNastavnik.html@ d3cf3a1

Last change on this file since d3cf3a1 was d3cf3a1, checked in by Marija Micevska <marija_micevska@…>, 2 years ago

Initial commit

  • Property mode set to 100644
File size: 3.6 KB
Line 
1<!DOCTYPE html >
2<html lang="en" xmlns:th="http://www.thymeleaf.org">
3<head>
4 <meta charset="UTF-8">
5 <title>EDUCATUM - НАЈАВА</title>
6 <link rel="stylesheet" href="/css/style.css">
7 <link href="https://cdn.jsdelivr.net/npm/bootstrap@5.1.3/dist/css/bootstrap.min.css"
8 rel="stylesheet" integrity="sha384-1BmE4kWBq78iYhFldvKuhfTAU6auU8tT94WrHftjDbrCEXSU1oBoqyl2QvZ6jIW3"
9 crossorigin="anonymous">
10 <script src="https://code.jquery.com/jquery-3.3.1.slim.min.js"></script>
11 <script src="https://cdn.jsdelivr.net/npm/bootstrap@5.1.3/dist/js/bootstrap.bundle.min.js"
12 integrity="sha384-ka7Sk0Gln4gmtz2MlQnikT1wXgYsOg+OMhuP+IlRH9sENBO0LRn5q+8nbTov4+1p"
13 crossorigin="anonymous"></script>
14 <link rel="stylesheet"
15 href="https://cdn.jsdelivr.net/npm/@fortawesome/fontawesome-free@5.15.4/css/fontawesome.min.css">
16 <style>
17 * {
18 box-sizing: border-box;
19 }
20
21 .no-gutters {
22 background: floralwhite;
23 border-radius: 5px;
24 box-shadow: rgba(0, 0, 0, 0.56) 0px 22px 70px 4px;
25 }
26
27 body {
28 background: linear-gradient(to right, #93A3CE, #1C294E);
29 color: #000029;
30 }
31
32 img {
33 width: 100%;
34 height: 100%;
35 object-fit: fill;
36 position: relative;
37 bottom: -30px;
38 }
39 #footer {
40 position: relative;
41 bottom: -60px;
42 }
43 </style>
44</head>
45<body>
46<section class="nav-bar">
47 <nav class="navbar navbar-expand-lg navbar-light">
48 <div class="ml-1"></div>
49 <a class="navbar-brand" href="#">
50 <p style="font-weight: bold; color: #FFCC00FF;">&nbsp;&nbsp;&nbsp;<svg xmlns="http://www.w3.org/2000/svg"
51 width="26" height="26"
52 fill="currentColor"
53 class="bi bi-mortarboard-fill"
54 viewBox="0 0 16 16">
55 <path d="M8.211 2.047a.5.5 0 0 0-.422 0l-7.5 3.5a.5.5 0 0 0 .025.917l7.5 3a.5.5 0 0 0 .372 0L14 7.14V13a1 1 0 0 0-1 1v2h3v-2a1 1 0 0 0-1-1V6.739l.686-.275a.5.5 0 0 0 .025-.917l-7.5-3.5Z"/>
56 <path d="M4.176 9.032a.5.5 0 0 0-.656.327l-.5 1.7a.5.5 0 0 0 .294.605l4.5 1.8a.5.5 0 0 0 .372 0l4.5-1.8a.5.5 0 0 0 .294-.605l-.5-1.7a.5.5 0 0 0-.656-.327L8 10.466 4.176 9.032Z"/>
57 </svg>
58 EDUCATUM
59 </p>
60 </a>
61 <div class="col-6"></div>
62 <button class="navbar-toggler" type="button" data-bs-toggle="collapse" data-bs-target="#navbarNav"
63 aria-controls="navbarNav" aria-expanded="false" aria-label="Toggle navigation">
64 <i class="fa fa-bars"></i>
65 </button>
66 <div class="collapse navbar-collapse justify-content-end navbarNav">
67 <ul class="navbar-nav mr-auto">
68
69 </ul>
70 </div>
71 </nav>
72</section>
73<section id="banner" style="position: relative; top: -30px;">
74 <div class="container" style="background-color: floralwhite; border-radius: 5px;
75 box-shadow: rgba(0, 0, 0, 0.56) 0px 22px 70px 4px;">
76 <div class="bg-text text-center">
77 <div th:if="${message}" class="m-8">
78 <h2 style="font-weight: bold; color: #000029;" th:text="${message}"/>
79 </div>
80 </div>
81 </div>
82</section>
83<img src="/img/flyingg.png">
84</body>
85</html>
Note: See TracBrowser for help on using the repository browser.