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

main
Last change on this file since d14176d was d14176d, checked in by HristijanMitic00 <hristijan.mitic.01@…>, 12 months ago

First commit

  • Property mode set to 100644
File size: 775 bytes
Line 
1<div class="container" xmlns:th="http://www.thymeleaf.org">
2 <form class="form-signin mt-xl-5" method="post" action="/login">
3 <h2 class="form-signin-heading">Sign in</h2>
4 <p>
5 <label for="username" class="sr-only">Username</label>
6 <input type="text" id="username" name="username" class="form-control" placeholder="Username" required=""
7 autofocus="">
8 </p>
9 <p>
10 <label for="password" class="sr-only">Password</label>
11 <input type="password" id="password" name="password" class="form-control" placeholder="Password"
12 required="">
13 </p>
14
15 <div th:text="${param.error}" class="text-danger"></div>
16
17 <button id="submit" class="btn btn-lg btn-primary btn-block" type="submit">Sign in</button>
18 </form>
19</div>
Note: See TracBrowser for help on using the repository browser.