[743de55] | 1 | <!DOCTYPE html>
|
---|
| 2 | <html lang="en">
|
---|
| 3 |
|
---|
| 4 | <head>
|
---|
| 5 | <meta charset="UTF-8">
|
---|
| 6 | <meta name="viewport" content="width=device-width, initial-scale=1.0">
|
---|
| 7 | <title>
|
---|
| 8 | Calendar
|
---|
| 9 | </title>
|
---|
| 10 | <link rel="stylesheet" href="/css/admin-terms.css">
|
---|
| 11 | </head>
|
---|
| 12 | <body class="light">
|
---|
| 13 | <div id="content">
|
---|
| 14 | <h1>Преглед и менаџирање со термини</h1>
|
---|
| 15 | <div id="left-side">
|
---|
| 16 | <div id="calendar-main">
|
---|
| 17 | <div class="calendar">
|
---|
| 18 | <div class="calendar-header">
|
---|
| 19 | <span class="month-picker" id="month-picker">August</span>
|
---|
| 20 | <div class="year-picker">
|
---|
| 21 | <span class="year-change" id="prev-year">
|
---|
| 22 | <pre><</pre>
|
---|
| 23 | </span>
|
---|
| 24 | <span id="year">2024</span>
|
---|
| 25 | <span class="year-change" id="next-year">
|
---|
| 26 | <pre>></pre>
|
---|
| 27 | </span>
|
---|
| 28 | </div>
|
---|
| 29 | </div>
|
---|
| 30 | <div class="calendar-body">
|
---|
| 31 | <div class="calendar-week-day">
|
---|
| 32 | <div>Sun</div>
|
---|
| 33 | <div>Mon</div>
|
---|
| 34 | <div>Tue</div>
|
---|
| 35 | <div>Wed</div>
|
---|
| 36 | <div>Thu</div>
|
---|
| 37 | <div>Fri</div>
|
---|
| 38 | <div>Sat</div>
|
---|
| 39 | </div>
|
---|
| 40 | <div class="calendar-days"></div>
|
---|
| 41 | </div>
|
---|
| 42 | <div class="month-list"></div>
|
---|
| 43 | </div>
|
---|
| 44 | </div>
|
---|
| 45 | <div id="paired">
|
---|
| 46 | <div id="creation">
|
---|
| 47 | <h3>Креирање поединечен термин</h3>
|
---|
| 48 | <p>*клик врз ден од календарот</p>
|
---|
| 49 | <div>
|
---|
| 50 | <label>Избери време: </label>
|
---|
| 51 | <select id="timePicker">
|
---|
| 52 | <option></option>
|
---|
| 53 | </select>
|
---|
| 54 | </div>
|
---|
| 55 | <button id="add-Term">Додади</button>
|
---|
| 56 | </div>
|
---|
| 57 | <div id="delete-all-free">
|
---|
| 58 | <label>Изберете датум за бришење на термини(слободни):</label>
|
---|
| 59 | <input type="date" id="delete-date-from" name="delete-date">
|
---|
| 60 | <input type="date" id="delete-date-to" name="delete-date">
|
---|
| 61 | <button id="delete-free-button">Избриши термини</button>
|
---|
| 62 | </div>
|
---|
| 63 | </div>
|
---|
| 64 | <div class="appointment-section">
|
---|
| 65 | <h2>Автоматско креирање термини</h2>
|
---|
| 66 | <label for="start-date">Од датум:</label>
|
---|
| 67 | <input type="date" id="start-date" name="start-date">
|
---|
| 68 | <label for="end-date">До датум:</label>
|
---|
| 69 | <input type="date" id="end-date" name="end-date">
|
---|
| 70 | <label for="start-time">Од време:</label>
|
---|
| 71 | <select id="start-time">
|
---|
| 72 | <option></option>
|
---|
| 73 | </select>
|
---|
| 74 | <label for="end-time">До време:</label>
|
---|
| 75 | <select id="end-time">
|
---|
| 76 | <option></option>
|
---|
| 77 | </select>
|
---|
| 78 | <label for="time-interval">Слободен простор меѓу термини (во минути):</label>
|
---|
| 79 | <input type="number" id="time-interval" name="time-interval" min="0" step="5">
|
---|
| 80 | <button id="create-appointments">Креирај слободни термини</button>
|
---|
| 81 | </div>
|
---|
| 82 | </div>
|
---|
| 83 | <div id="right-side">
|
---|
| 84 | <div id="active">
|
---|
| 85 | <p>Тековни термини за ден <span id="insert-date"></span></p>
|
---|
| 86 | <div id="frame"></div>
|
---|
| 87 | </div>
|
---|
| 88 | <div id="summary">
|
---|
| 89 | <table id="requested-table" style="display: none;">
|
---|
| 90 | <thead><th>Предложени</th></thead><tbody id="requested"></tbody>
|
---|
| 91 | </table>
|
---|
| 92 | <table id="approved-table" style="display: none;">
|
---|
| 93 | <thead><th>Одобрени</th></thead><tbody id="approved"></tbody>
|
---|
| 94 | </table>
|
---|
| 95 | <div id="request-assets" style="display: none;">
|
---|
| 96 | <label>Одобрен корисник:</label>
|
---|
| 97 | <input id="username-approval" type="text">
|
---|
| 98 | <button id="confirm-approval">Потврди</button>
|
---|
| 99 | </div>
|
---|
| 100 | <div id="appointment-assets" style="display: none;">
|
---|
| 101 | <button id="delete-approval">Бриши резервација на термин</button>
|
---|
| 102 | <button id="approve-carried-out">Потврди одржан термин</button>
|
---|
| 103 | </div>
|
---|
| 104 | <div id="popupModal" class="modal" style="display: none;">
|
---|
| 105 | <div class="modal-content">
|
---|
| 106 | <span class="close">×</span>
|
---|
| 107 | <h2>Enter Your Details</h2>
|
---|
| 108 | <input type="text" id="userInput" placeholder="Enter something...">
|
---|
| 109 | <div class="buttons">
|
---|
| 110 | <button id="cancelBtn">Cancel</button>
|
---|
| 111 | <button id="approveBtn">Approve</button>
|
---|
| 112 | </div>
|
---|
| 113 | </div>
|
---|
| 114 | </div>
|
---|
| 115 | <button id="temporal-deletion" style="display: none;">Целосно бришење термин</button>
|
---|
| 116 | </div>
|
---|
| 117 | </div>
|
---|
| 118 | </div>
|
---|
| 119 | <script type="module" src="/js/admin-terms.js"></script>
|
---|
| 120 | </body>
|
---|
| 121 | </html> |
---|