source: src/main/resources/templates/login.html@ 5444409

Last change on this file since 5444409 was 5444409, checked in by milamihajlovska <mila.mihajlovska01@…>, 21 months ago

update register and registerWorker

  • Property mode set to 100644
File size: 1.3 KB
Line 
1<div class="container">
2 <h1 th:if="${hasError}" th:text="${error}"></h1>
3</div>
4<div>
5 <form th:method="POST" th:action="@{/login}">
6 <div class="container">
7 <form class="form-signin mt-xl-5" method="post" action="/login">
8 <h2 class="form-signin-heading" style="color: white">Најава</h2>
9 <p>
10 <label for="username" class="sr-only">Корисничко име</label>
11 <input type="text" id="username" name="username" class="form-control" placeholder="Корисничко име" required="" autofocus=""/>
12 </p>
13 <p>
14 <label for="password" class="sr-only">Лозинка</label>
15 <input type="password" id="password" name="password" class="form-control" placeholder="Лозинка" required=""/>
16 </p>
17 </form>
18 <button id="submit" style="background-color: #ff5019;border-color: #ff5019" class="btn btn-lg btn-block" type="submit">Најави се</button>
19 </div>
20 <div style="display: flex;justify-content: center;align-content: center">
21 <a href="/register" class="btn btn-block btn-light" style="margin-top: 20px;width: 400px">Регистрирај се тука!</a>
22 </div>
23 </form>
24
25</div>
Note: See TracBrowser for help on using the repository browser.