source: src/main/resources/templates/html/adminCoupons.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: 1.1 KB
Line 
1<!DOCTYPE html>
2<html lang="en">
3<head>
4 <meta charset="UTF-8">
5 <meta name="viewport" content="width=device-width, initial-scale=1.0">
6 <script src="/js/cookie.js" defer></script>
7 <link rel="stylesheet" href="/css/adminNews.css">
8</head>
9<body data-page="coupons">
10<button id="authButton" style="display: none;"></button>
11<h2>Купони...</h2>
12<div class="coupons-container">
13 <div class="add-coupons" onclick="showForm()">+</div>
14 <div id="coupons-list">
15 </div>
16</div>
17
18<div id="coupons-form" class="coupons-container" style="display: none;">
19 <form id="form">
20 <div id="title-part">
21 <label for="title">Наслов: </label>
22 <input type="text" id="title" required>
23 </div>
24 <div id="code-part">
25 <label for="code">Код: </label>
26 <input type="text" id="code">
27 </div>
28 <div id="description-part">
29 <label for="description">Опис: </label>
30 <textarea id="description" required></textarea>
31 </div>
32 <button type="button" onclick="submitForm()">Submit</button>
33 <button type="button" onclick="hideForm()">Cancel</button>
34 </form>
35</div>
36
37<script src="/js/adminNewsCoupons.js"></script>
38</body>
39</html>
Note: See TracBrowser for help on using the repository browser.