source: src/main/resources/templates/home-pacient.html@ e5fefbd

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

initial commit

  • Property mode set to 100644
File size: 4.7 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 <title> Пациент </title>
6 <link rel="shortcut icon" th:href="@{assets/images/favicon.ico}">
7 <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">
8 <script src="https://code.jquery.com/jquery-3.3.1.slim.min.js" integrity="sha384-q8i/X+965DzO0rT7abK41JStQIAqVgRVzpbzo5smXKp4YfRvH+8abtTE1Pi6jizo" crossorigin="anonymous"></script>
9 <script src="https://cdnjs.cloudflare.com/ajax/libs/popper.js/1.14.7/umd/popper.min.js" integrity="sha384-UO2eT0CpHqdSJQ6hJty5KVphtPhzWj9WO1clHTMGa3JDZwrnQq4sF86dIHNDz0W1" crossorigin="anonymous"></script>
10 <script src="https://stackpath.bootstrapcdn.com/bootstrap/4.3.1/js/bootstrap.min.js" integrity="sha384-JjSmVgyd0p3pXB1rRibZUAYoIIy6OrQ6VrjIEaFf/nJGzIxFDsf4x0xIM+B07jRM" crossorigin="anonymous"></script>
11</head>
12<body>
13<form class="form-signin mt-xl-0" method="get" action="/home-pacient">
14 <nav class="navbar navbar-expand-md navbar-dark bg-dark">
15 <div class="container">
16 <form class="form-inline my-2 my-lg-0">
17 <div class="input-group input-group-sm">
18 <a class="navbar-brand" href="/home-pacient"> MEDWEB </a>
19 <button class="navbar-toggler" type="button" data-toggle="collapse" data-target="#navbarsExampleDefault"
20 aria-controls="navbarsExampleDefault" aria-expanded="false" aria-label="Toggle navigation">
21 <span class="navbar-toggler-icon"></span>
22 </button>
23 </div>
24 <a class="btn btn-primary btn-sm ml-3" href="/moi-upati">
25 <i class="fa fa-shopping-cart"></i> Мои упати
26 </a>
27 <a class="btn btn-primary btn-sm ml-3" href="/logout">
28 <i class="fa fa-shopping-cart"></i> Одјави се
29 </a>
30 </form>
31 </div>
32 </div>
33 </nav>
34 <section class="jumbotron text-center">
35 <div>
36 <h3> Пациент почетна страна </h3>
37 </div>
38 <section class="jumbotron text-center">
39 <div class="container">
40 <h3 class="jumbotron-heading"> Најавен пациент:
41 <th:block th:if="${session.pacient != null}" th:text="${session.pacient.getEmail()}"></th:block>
42 </h3>
43 </div>
44 </section>
45 </section>
46</form>
47
48<!-- Footer -->
49<footer class="text-black-50 mt-xl-5">
50 <div class="container">
51 <div class="row">
52 <div class="col-md-3 col-lg-4 col-xl-3">
53 <h5>About</h5>
54 <hr class="bg-white mb-2 mt-0 d-inline-block mx-auto w-25">
55 <p class="mb-0">
56 Le Lorem Ipsum est simplement du faux texte employé dans la composition et la mise en page avant
57 impression.
58 </p>
59 </div>
60
61 <div class="col-md-2 col-lg-2 col-xl-2 mx-auto">
62 <h5>Informations</h5>
63 <hr class="bg-white mb-2 mt-0 d-inline-block mx-auto w-25">
64 <ul class="list-unstyled">
65 <li><a href="">Link 1</a></li>
66 <li><a href="">Link 2</a></li>
67 <li><a href="">Link 3</a></li>
68 <li><a href="">Link 4</a></li>
69 </ul>
70 </div>
71
72 <div class="col-md-3 col-lg-2 col-xl-2 mx-auto">
73 <h5>Others links</h5>
74 <hr class="bg-white mb-2 mt-0 d-inline-block mx-auto w-25">
75 <ul class="list-unstyled">
76 <li><a href="">Link 1</a></li>
77 <li><a href="">Link 2</a></li>
78 <li><a href="">Link 3</a></li>
79 <li><a href="">Link 4</a></li>
80 </ul>
81 </div>
82
83 <div class="col-md-4 col-lg-3 col-xl-3">
84 <h5>Contact</h5>
85 <hr class="bg-white mb-2 mt-0 d-inline-block mx-auto w-25">
86 <ul class="list-unstyled">
87 <li><i class="fa fa-home mr-2"></i> My company</li>
88 <li><i class="fa fa-envelope mr-2"></i> email@example.com</li>
89 <li><i class="fa fa-phone mr-2"></i> + 33 12 14 15 16</li>
90 <li><i class="fa fa-print mr-2"></i> + 33 12 14 15 16</li>
91 </ul>
92 </div>
93 </div>
94 </div>
95</footer>
96</body>
97</html>
Note: See TracBrowser for help on using the repository browser.