source: src/main/resources/templates/html/adminCoupons.html@ 743de55

Last change on this file since 743de55 was 743de55, checked in by macagaso <gasoskamarija@…>, 6 weeks ago

Initial commit

  • Property mode set to 100644
File size: 1.0 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 <link rel="stylesheet" href="/css/adminNews.css">
7</head>
8<body data-page="coupons">
9<h2>Купони...</h2>
10<div class="coupons-container">
11 <div class="add-coupons" onclick="showForm()">+</div>
12 <div id="coupons-list">
13 </div>
14</div>
15
16<div id="coupons-form" class="coupons-container" style="display: none;">
17 <form id="form">
18 <div id="title-part">
19 <label for="title">Наслов: </label>
20 <input type="text" id="title" required>
21 </div>
22 <div id="code-part">
23 <label for="code">Код: </label>
24 <input type="text" id="code">
25 </div>
26 <div id="description-part">
27 <label for="description">Опис: </label>
28 <textarea id="description" required></textarea>
29 </div>
30 <button type="button" onclick="submitForm()">Submit</button>
31 <button type="button" onclick="hideForm()">Cancel</button>
32 </form>
33</div>
34
35<script src="/js/adminNewsCoupons.js"></script>
36</body>
37</html>
Note: See TracBrowser for help on using the repository browser.