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

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

Initial commit

  • Property mode set to 100644
File size: 3.5 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 body {
22 background: linear-gradient(to right, #93A3CE, #1C294E);
23 color: #000029;
24 }
25
26 img {
27 width: 100%;
28 height: 100%;
29 object-fit: fill;
30 position: relative;
31 bottom: -30px;
32 }
33 </style>
34</head>
35<body>
36<section class="nav-bar">
37 <nav class="navbar navbar-expand-lg navbar-light">
38 <div class="ml-1"></div>
39 <a class="navbar-brand" href="#">
40 <p style="font-weight: bold; color: #FFCC00FF;">&nbsp;&nbsp;&nbsp;<svg xmlns="http://www.w3.org/2000/svg"
41 width="26" height="26"
42 fill="currentColor"
43 class="bi bi-mortarboard-fill"
44 viewBox="0 0 16 16">
45 <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"/>
46 <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"/>
47 </svg>
48 EDUCATUM
49 </p>
50 </a>
51 <div class="col-6"></div>
52 <button class="navbar-toggler" type="button" data-bs-toggle="collapse" data-bs-target="#navbarNav"
53 aria-controls="navbarNav" aria-expanded="false" aria-label="Toggle navigation">
54 <i class="fa fa-bars"></i>
55 </button>
56 <div class="collapse navbar-collapse justify-content-end navbarNav">
57 <ul class="navbar-nav mr-auto">
58
59 </ul>
60 </div>
61 </nav>
62</section>
63<section id="banner" style="position: relative; top: -30px;">
64 <div class="container" style="background-color: floralwhite; border-radius: 5px;
65 box-shadow: rgba(0, 0, 0, 0.56) 0px 22px 70px 4px;">
66 <div class="bg-text text-center">
67 <div class="m-8">
68 <h2 style="font-weight: bold; color: #000029;">
69 Вашиот профил сѐ уште не е активиран. Ве молиме обидете се подоцна.
70 <a href="/home" class="btn btn-link">Home</a>
71 </h2>
72 </div>
73 </div>
74 </div>
75</section>
76<img src="/img/flyingg.png">
77</body>
78</html>
Note: See TracBrowser for help on using the repository browser.