source: src/main/resources/templates/home-doktor.html

Last change on this file was e5fefbd, checked in by Anita Terziska <63020646+Nit4e@…>, 2 years ago

initial commit

  • Property mode set to 100644
File size: 2.2 KB
Line 
1<!DOCTYPE html>
2<html lang="en" xmlns="http://www.w3.org/1999/xhtml" xmlns:th="http://www.thymeleaf.org">
3<head>
4 <meta charset="UTF-8">
5 <link rel="shortcut icon" th:href="@{assets/images/favicon.ico}">
6 <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">
7 <title> Доктор </title>
8</head>
9<body>
10<form class="form-signin mt-xl-0" method="get" action="/home-doktor">
11 <nav class="navbar navbar-expand-md navbar-dark bg-dark">
12 <div class="container">
13 <form class="form-inline my-2 my-lg-0">
14 <div class="input-group input-group-sm">
15 <a class="navbar-brand" href="/home-doktor"> MEDWEB </a>
16 <button class="navbar-toggler" type="button" data-toggle="collapse" data-target="#navbarsExampleDefault"
17 aria-controls="navbarsExampleDefault" aria-expanded="false" aria-label="Toggle navigation">
18 <span class="navbar-toggler-icon"></span>
19 </button>
20 </div>
21 <a class="btn btn-primary btn-sm ml-3" href="/moi-termini">
22 <i class="fa fa-shopping-cart"></i> Мои термини
23 </a>
24 <a class="btn btn-primary btn-sm ml-3" href="/logout">
25 <i class="fa fa-shopping-cart"></i> Одјави се
26 </a>
27 </form>
28 </div>
29 </nav>
30 <section class="jumbotron text-center">
31 <div>
32 <h3> Доктор почетна страна </h3>
33 </div>
34 <section class="jumbotron text-center">
35 <div class="container">
36 <h3 class="jumbotron-heading"> Најавен доктор:
37 <th:block th:if="${session.doktor != null}" th:text="${session.doktor.getEmail()}"></th:block>
38 </h3>
39 </div>
40 </section>
41 <a th:href="@{'/vnesi-termin/{id}' (id=${session.doktor.getCovek_id()})}" class="btn btn-primary btn-sm ml-3">
42 <i class="fa fa-shopping-cart"> Внеси нов термин </i>
43 </a>
44 </section>
45</form>
46</body>
47</html>
Note: See TracBrowser for help on using the repository browser.