Last change
on this file since 6fe77af was 6a3a178, checked in by Ema <ema_spirova@…>, 3 years ago |
initial commit
|
-
Property mode
set to
100644
|
File size:
1.9 KB
|
Rev | Line | |
---|
[6a3a178] | 1 | <!DOCTYPE html>
|
---|
| 2 | <html lang="en">
|
---|
| 3 | <head>
|
---|
| 4 | <meta charset="UTF-8">
|
---|
| 5 | <link href="https://cdn.jsdelivr.net/npm/bootstrap@5.0.1/dist/css/bootstrap.min.css" rel="stylesheet" integrity="sha384-+0n0xVW2eSR5OomGNYDnhzAbDsOXxcvSN1TPprVMTNDbiYZCxYbOOl7+AMvyTG2x" crossorigin="anonymous">
|
---|
| 6 | <title>Edit planner</title>
|
---|
| 7 | </head>
|
---|
| 8 | <body>
|
---|
| 9 | <span />
|
---|
| 10 | <form method="POST" >
|
---|
| 11 | <div class="form-group">
|
---|
| 12 | <label>Description </label>
|
---|
| 13 | <textarea id="pland" name="plandesc" th:text="*{detailsAboutPlanner.get().getDescription()}"></textarea>
|
---|
| 14 | <label>Planner name</label>
|
---|
| 15 | <input type="text" id="plann" name="planname" th:value="${detailsAboutPlanner.get().getName()}" />
|
---|
| 16 | </div>
|
---|
| 17 |
|
---|
| 18 | <div class="container mb-4" >
|
---|
| 19 | <div class="row">
|
---|
| 20 | <div class="col-12">
|
---|
| 21 | <div class="table-responsive">
|
---|
| 22 | <table class="table table-striped">
|
---|
| 23 | <thead>
|
---|
| 24 | <tr>
|
---|
| 25 | <th scope="col">Location name</th>
|
---|
| 26 | </tr>
|
---|
| 27 | </thead>
|
---|
| 28 | <tbody>
|
---|
| 29 | <tr >
|
---|
| 30 | <td> <a href="/create/locations">Add location</a>
|
---|
| 31 | </td>
|
---|
| 32 | </tr>
|
---|
| 33 | </tbody>
|
---|
| 34 | </table>
|
---|
| 35 | </div>
|
---|
| 36 | </div>
|
---|
| 37 | </div>
|
---|
| 38 | </div>
|
---|
| 39 | <br>
|
---|
| 40 | <button id="submit" type="submit" class="btn btn-primary">Edit save</button>
|
---|
| 41 | </form>
|
---|
| 42 |
|
---|
| 43 | <script src="https://cdn.jsdelivr.net/npm/@popperjs/core@2.9.2/dist/umd/popper.min.js" integrity="sha384-IQsoLXl5PILFhosVNubq5LC7Qb9DXgDA9i+tQ8Zj3iwWAwPtgFTxbJ8NT4GN1R8p" crossorigin="anonymous"></script>
|
---|
| 44 | <script src="https://cdn.jsdelivr.net/npm/bootstrap@5.0.1/dist/js/bootstrap.min.js" integrity="sha384-Atwg2Pkwv9vp0ygtn1JAojH0nYbwNJLPhwyoVbhoPwBhjQPR5VtM2+xf0Uwh9KtT" crossorigin="anonymous"></script>
|
---|
| 45 |
|
---|
| 46 | </body>
|
---|
| 47 | </html> |
---|
Note:
See
TracBrowser
for help on using the repository browser.