source: src/main/resources/templates/showProfileTeacher2.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: 5.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 rel="stylesheet" href="/css/rating.css">
8 <link href="https://cdn.jsdelivr.net/npm/bootstrap@5.1.3/dist/css/bootstrap.min.css"
9 rel="stylesheet" integrity="sha384-1BmE4kWBq78iYhFldvKuhfTAU6auU8tT94WrHftjDbrCEXSU1oBoqyl2QvZ6jIW3"
10 crossorigin="anonymous">
11 <script src="https://code.jquery.com/jquery-3.3.1.slim.min.js"></script>
12 <script src="https://cdn.jsdelivr.net/npm/bootstrap@5.1.3/dist/js/bootstrap.bundle.min.js"
13 integrity="sha384-ka7Sk0Gln4gmtz2MlQnikT1wXgYsOg+OMhuP+IlRH9sENBO0LRn5q+8nbTov4+1p"
14 crossorigin="anonymous"></script>
15 <link rel="stylesheet"
16 href="https://cdn.jsdelivr.net/npm/@fortawesome/fontawesome-free@5.15.4/css/fontawesome.min.css">
17 <link th:rel="stylesheet" th:href="@{/webjars/font-awesome/5.11.2/css/all.css} "/>
18 <link th:rel="stylesheet" th:href="@{/webjars/bootstrap/4.0.0-2/css/bootstrap.min.css} "/>
19 <link th:rel="stylesheet" th:href="@{/assets/bootstrapless-star-rating/star-rating.css} "/>
20</head>
21<body>
22
23<section class="Form my-4 mx-5">
24 <div class="container">
25 <div class="row no-gutters">
26
27 <div class="col-lg-7 px-5 pt-5">
28 <div class="row">
29 <h1 class="font-weight-bold py3" style="font-weight:bold; ">Информации за контакт</h1>
30 <div class="col-4">
31 <h2 style="position: relative; bottom: -40px;"><b>
32 <th:block th:text="${teacher.getFullName()}"></th:block>
33 </b></h2>
34 </div>
35
36 <div class="col">
37 <form th:method="POST" th:action="@{'/students/rateTeacher/{id}' (id=${teacher.getId()})}">
38 <div class="rating-list">
39 <div>Рејтинг:
40 <div th:text="${teacherRating}"></div>
41 </div>
42 <input type="radio" name="rating" id="Overall Rating_5" value="5"
43 class="radio rating-radio rating-radio--5">
44 <label for="Overall Rating_5" title="1 star rating"
45 class="star-rating star-rating--5"></label>
46 <input type="radio" name="rating" id="Overall Rating_4" value="4"
47 class="radio rating-radio rating-radio--4">
48 <label for="Overall Rating_4" title="2 star rating"
49 class="star-rating star-rating--4"></label>
50 <input type="radio" name="rating" id="Overall Rating_3" value="3"
51 class="radio rating-radio rating-radio--3">
52 <label for="Overall Rating_3" title="3 star rating"
53 class="star-rating star-rating--3"></label>
54 <input type="radio" name="rating" id="Overall Rating_2" value="2"
55 class="radio rating-radio rating-radio--2">
56 <label for="Overall Rating_2" title="4 star rating"
57 class="star-rating star-rating--2"></label>
58 <input type="radio" name="rating" id="Overall Rating_1" value="1"
59 class="radio rating-radio rating-radio--1">
60 <label for="Overall Rating_1" title="5 star rating"
61 class="star-rating star-rating--1"></label>
62 </div>
63
64 <input type="submit" class="btn btn-sm btn-link" value="Submit"
65 style="position: relative; bottom: -95px; left: -20px;">
66
67 <div th:if="${hasError}==false">
68 <div th:text="${message}"></div>
69 </div>
70 </form>
71 </div>
72
73 </div>
74
75
76 <div class="row">
77 <div class="col-8">
78 <h4 th:text="${teacher.getDescription()}"></h4>
79 <h3>Телефонски број
80 <div th:text="${teacher.getTelephoneNumber()}"></div>
81 </h3>
82 <br/>
83 <h3>E-mail
84 <div th:text="${teacher.getEmail()}"></div>
85 </h3>
86 <br/>
87 <a href="/students/listSubjectsTeachers?subjectID=0" class="btn btn-link">&laquo;Назад кон
88 листата со наставници</a>
89
90 </div>
91 </div>
92
93 </div>
94 <div class="col-lg-5" id="library">
95 <img src="/img/teacherProfile.png" class="img-fluid library" alt="login image"/>
96 </div>
97
98 </div>
99 </div>
100
101</section>
102<img src="/img/wave-1.png" alt="Wave" class="bottom-img" style="position: relative; bottom: -60px;">
103<script th:src="@{/webjars/jquery/jquery.min.js}"></script>
104<script th:src="@{/webjars/popper.js/umd/popper.min.js}"></script>
105<script th:src="@{/webjars/bootstrap/js/bootstrap.min.js}"></script>
106<script th:src="@{/assets/bootstrapless-star-rating/star-rating.min.js}"></script>
107</body>
108</html>
Note: See TracBrowser for help on using the repository browser.