Ignore:
Timestamp:
08/24/23 02:28:14 (15 months ago)
Author:
DenicaKj <dkorvezir@…>
Branches:
master
Children:
bcb4acc
Parents:
40935d3
Message:

fix

File:
1 edited

Legend:

Unmodified
Added
Removed
  • src/main/resources/templates/addDiscount.html

    r40935d3 r1e7126f  
    1 <!DOCTYPE html>
    2 <html lang="en">
    3 <head>
    4   <meta charset="UTF-8">
    5   <title>$Title$</title>
    6 </head>
    7 <body>
    8 $END$
    9 </body>
    10 </html>
     1<th:block xmlns:th="http://www.thymeleaf.org">
     2    <div style="color: white" class="container">
     3        <h1 class="jumbotron-heading">Додани нов попуст</h1>
     4        <div class="row">
     5            <div class="col-md-5">
     6                <form action="/home/addD" method="POST">
     7                    <div class="form-group">
     8                        <label for="code">Код</label>
     9                        <input type="text"
     10                               class="form-control"
     11                               id="code"
     12                               name="code"
     13                               required
     14                               placeholder="внеси код">
     15                    </div>
     16                    <div class="form-group">
     17                        <label for="validity">Валиндост</label>
     18                        <input type="date"
     19                               class="form-control"
     20                               id="validity"
     21                               name="validity"
     22                               placeholder="Валидност">
     23                    </div>
     24                    <div class="form-group">
     25                        <label for="type">Тип</label>
     26                        <input type="text"
     27                               class="form-control"
     28                               id="type"
     29                               name="type"
     30                               placeholder="Тип">
     31                    </div>
     32                    <div class="form-group">
     33                        <label for="percent">Процент</label>
     34                        <input type="number"
     35                               class="form-control"
     36                               id="percent"
     37                               name="percent"
     38                        >
     39                    </div>
     40                    <button style="background-color: #ff5019" id="submit" type="submit" class="btn btn-primary">Додади</button>
     41                </form>
     42            </div>
     43
     44        </div>
     45
     46    </div>
     47
     48</th:block>
Note: See TracChangeset for help on using the changeset viewer.