source: src/main/resources/templates/html/editUser.html@ 43c9090

Last change on this file since 43c9090 was 43c9090, checked in by macagaso <gasoskamarija@…>, 5 weeks ago

Updated version

  • Property mode set to 100644
File size: 4.1 KB
Line 
1<!DOCTYPE html>
2<html lang="en">
3<head>
4 <meta charset="UTF-8">
5 <title>Title</title>
6 <link rel="stylesheet" href="/css/editUser.css">
7 <script src="/js/cookie.js" defer></script>
8</head>
9<body>
10<button id="authButton" style="display: none;"></button>
11<h2>Информации за корисникот</h2>
12<div id="content">
13 <div id="main-part">
14 <div id="container">
15 <div id="left-side">
16 <div>
17 <p>Корисничко име</p>
18 <input type="text" name="username" id="usernameSignIn"/>
19 </div>
20 <div>
21 <p>Име</p>
22 <input type="text" id="name" name="firstName"/>
23 </div>
24 <div>
25 <p>Презиме</p>
26 <input type="text" id="surname" name="lastName"/>
27 </div>
28 <div>
29 <p>Година на раѓање</p>
30 <input type="date" id="age" name="age"/>
31 </div>
32 </div>
33 <div id="right-side">
34 <div>
35 <p>Телефон</p>
36 <input type="tel" id="phone" placeholder="07_-___-___" name="phone"/>
37 </div>
38 <button id="block-account" style="display: none;">Блокирај к.сметка</button>
39 <button id="edit-profile">Измени профил</button>
40 <button id="saveChanges">Зачувај</button>
41 </div>
42 </div>
43 <div id="adminInfo-block" style="display: none;">
44 <table id="stat-table">
45 <thead>
46 <tr>
47 <th>Состојба на термин</th>
48 <th>Број</th>
49 </tr>
50 </thead>
51 <tbody>
52 <tr>
53 <td>Одржани термини</td>
54 <td><span id="carried-out"></span></td>
55 </tr>
56 <tr>
57 <td>Одбиени предлози</td>
58 <td><span id="rejected"></span></td>
59 </tr>
60 <tr>
61 <td>Откажани предлози</td>
62 <td><span id="cancelledReqByUser"></span></td>
63 </tr>
64 <tr>
65 <td>Откажани термини(корисник)</td>
66 <td><span id="cancelledAppByUser"></span></td>
67 </tr>
68 <tr>
69 <td>Откажани термини(админ)</td>
70 <td><span id="cancelledAppByAdmin"></span></td>
71 </tr>
72 </tbody>
73 </table>
74 </div>
75 </div>
76 <div id="table-part">
77 <p>Информации за термини на корисникот</p>
78 <select id="statusDropdown">
79 <option value=""></option>
80 <option value="requests" id="requests">Предложени термини</option>
81 <option value="appointments" id="appointments">Прифатени термини</option>
82 <option value="not-completed" id="not-completed">Неодржани термини</option>
83 <option value="completed" id="completed">Одржени термини</option>
84 </select>
85 <table id="additional-table">
86 <thead id="active-tableHead"></thead>
87 <tbody id="active-table"></tbody>
88 </table>
89 </div>
90</div>
91
92<div id="popupModal" class="modal" style="display: none;">
93 <div class="modal-content">
94 <span class="close">&times;</span>
95 <h2>Enter Your Details</h2>
96 <input type="text" id="userInput" required>
97 <div class="buttons">
98 <button id="cancelBtn">Cancel</button>
99 <button id="approveBtn">Approve</button>
100 </div>
101 </div>
102</div>
103
104<script type="module" src="/js/editUser.js"></script>
105</body>
106</html>
Note: See TracBrowser for help on using the repository browser.