main
Last change
on this file was d659b83, checked in by Marko_Gjorgjievski_201136 <marko.gjorgjievski@…>, 2 months ago |
Commiting the whole project
|
-
Property mode
set to
100644
|
File size:
994 bytes
|
Rev | Line | |
---|
[d659b83] | 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 | <title>Add Workout</title>
|
---|
| 7 |
|
---|
| 8 | <!-- Add Bootstrap CSS -->
|
---|
| 9 | <link href="https://cdn.jsdelivr.net/npm/bootstrap@5.3.0/dist/css/bootstrap.min.css" rel="stylesheet">
|
---|
| 10 | </head>
|
---|
| 11 | <body>
|
---|
| 12 | <div th:replace="appBar"></div>
|
---|
| 13 |
|
---|
| 14 | <div class="container mt-4">
|
---|
| 15 | <h2 class="mb-4">Add Workout</h2>
|
---|
| 16 |
|
---|
| 17 | <form id="addWorkoutForm" action="/workouts/addWorkout" method="post">
|
---|
| 18 | <div class="mb-3">
|
---|
| 19 | <label for="name" class="form-label">Workout Name:</label>
|
---|
| 20 | <input type="text" class="form-control" id="name" name="name" required>
|
---|
| 21 | </div>
|
---|
| 22 |
|
---|
| 23 | <button type="submit" class="btn btn-primary">Add Workout</button>
|
---|
| 24 | </form>
|
---|
| 25 | </div>
|
---|
| 26 |
|
---|
| 27 | <!-- Add Bootstrap JS and Popper.js (required for some Bootstrap components) -->
|
---|
| 28 | <script src="https://cdn.jsdelivr.net/npm/bootstrap@5.3.0/dist/js/bootstrap.bundle.min.js"></script>
|
---|
| 29 | </body>
|
---|
| 30 | </html>
|
---|
Note:
See
TracBrowser
for help on using the repository browser.