source: src/main/resources/templates/login.html@ 632e3d8

Last change on this file since 632e3d8 was 39a45e6, checked in by milamihajlovska <mila.mihajlovska01@…>, 22 months ago

updates in html

  • Property mode set to 100644
File size: 1.0 KB
Line 
1
2<div>
3 <form th:method="POST" th:action="@{/login}">
4 <div class="container">
5 <form class="form-signin mt-xl-5" method="post" action="/login">
6 <h2 class="form-signin-heading">Најава</h2>
7 <p>
8 <label for="username" class="sr-only">Корисничко име</label>
9 <input type="text" id="username" name="username" class="form-control" placeholder="Корисничко име" required="" autofocus=""/>
10 </p>
11 <p>
12 <label for="password" class="sr-only">Лозинка</label>
13 <input type="password" id="password" name="password" class="form-control" placeholder="Лозинка" required=""/>
14 </p>
15 </form>
16 <button id="submit" class="btn btn-lg btn-primary btn-block" type="submit">Најави се</button>
17 </div>
18 </form>
19 <a href="/register" class="btn btn-block btn-light">Регистрирај се тука!</a>
20</div>
Note: See TracBrowser for help on using the repository browser.