[e5fefbd] | 1 | <!DOCTYPE html>
|
---|
| 2 | <html lang="en" xmlns="http://www.w3.org/1999/xhtml" xmlns:th="http://www.thymeleaf.org">
|
---|
| 3 | <head>
|
---|
| 4 | <meta charset="UTF-8">
|
---|
| 5 | <link rel="shortcut icon" th:href="@{assets/images/favicon.ico}">
|
---|
| 6 | <link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/bootstrap/4.3.1/css/bootstrap.min.css" integrity="sha384-ggOyR0iXCbMQv3Xipma34MD+dH/1fQ784/j6cY/iJTQUOhcWr7x9JvoRxT2MZw1T" crossorigin="anonymous">
|
---|
| 7 | <script src="https://code.jquery.com/jquery-3.3.1.slim.min.js" integrity="sha384-q8i/X+965DzO0rT7abK41JStQIAqVgRVzpbzo5smXKp4YfRvH+8abtTE1Pi6jizo" crossorigin="anonymous"></script>
|
---|
| 8 | <script src="https://cdnjs.cloudflare.com/ajax/libs/popper.js/1.14.7/umd/popper.min.js" integrity="sha384-UO2eT0CpHqdSJQ6hJty5KVphtPhzWj9WO1clHTMGa3JDZwrnQq4sF86dIHNDz0W1" crossorigin="anonymous"></script>
|
---|
| 9 | <script src="https://stackpath.bootstrapcdn.com/bootstrap/4.3.1/js/bootstrap.min.js" integrity="sha384-JjSmVgyd0p3pXB1rRibZUAYoIIy6OrQ6VrjIEaFf/nJGzIxFDsf4x0xIM+B07jRM" crossorigin="anonymous"></script>
|
---|
| 10 | <title> Внеси Термин </title>
|
---|
| 11 | </head>
|
---|
| 12 | <body>
|
---|
| 13 | <form class="form-signin mt-xl-0">
|
---|
| 14 | <nav class="navbar navbar-expand-md navbar-dark bg-dark">
|
---|
| 15 | <div class="container">
|
---|
| 16 | <form class="form-inline my-2 my-lg-0">
|
---|
| 17 | <div class="input-group input-group-sm">
|
---|
| 18 | <a class="navbar-brand" href="/home-doktor"> MEDWEB </a>
|
---|
| 19 | <button class="navbar-toggler" type="button" data-toggle="collapse" data-target="#navbarsExampleDefault"
|
---|
| 20 | aria-controls="navbarsExampleDefault" aria-expanded="false" aria-label="Toggle navigation">
|
---|
| 21 | <span class="navbar-toggler-icon"></span>
|
---|
| 22 | </button>
|
---|
| 23 | </div>
|
---|
| 24 | <a class="btn btn-primary btn-sm ml-3" href="/moi-termini">
|
---|
| 25 | <i class="fa fa-shopping-cart"></i> Мои термини
|
---|
| 26 | </a>
|
---|
| 27 | <a class="btn btn-primary btn-sm ml-3" href="/logout">
|
---|
| 28 | <i class="fa fa-shopping-cart"></i> Одјави се
|
---|
| 29 | </a>
|
---|
| 30 | </form>
|
---|
| 31 | </div>
|
---|
| 32 | </nav>
|
---|
| 33 |
|
---|
| 34 | <div class="container mt-5">
|
---|
| 35 | <h3 align="justify"> </h3>
|
---|
| 36 | <div class="card" style="width: 55rem; ">
|
---|
| 37 | <div class="card-header text-center bg-info ">
|
---|
| 38 | <h5> Внеси Термин </h5>
|
---|
| 39 | </div>
|
---|
| 40 | <div class="card-body">
|
---|
| 41 |
|
---|
| 42 | <form th:action="@{/save-termin}" method="post"> <!-- -->
|
---|
| 43 | <div class="form-group">
|
---|
| 44 | <label for="dateField"> Датум и време </label>
|
---|
| 45 | <input type="datetime-local" placeholder="yyyy-mm-ddThh:mm" class="form-control" id="dateField" aria-describedby="emailHelp" th:name="vreme">
|
---|
| 46 | </div>
|
---|
| 47 | <button type="submit" class="btn btn-primary"> Потврди </button>
|
---|
| 48 | </form>
|
---|
| 49 | </div>
|
---|
| 50 | </div>
|
---|
| 51 | </div>
|
---|
| 52 | </form>
|
---|
| 53 | </body>
|
---|
| 54 | </html>
|
---|