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

Last change on this file since b101b69 was b101b69, checked in by ppaunovski <paunovskipavel@…>, 6 months ago

initial classes, no inheritance yet v2

  • Property mode set to 100644
File size: 1.1 KB
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:if="${param.error}" th:text="${param.error}" class="text-danger"></div>
16
17 <div class="row">
18 <div class="col-md-3">
19 <button id="submit" class="btn btn-lg btn-primary btn-block" type="submit">Sign in</button>
20 </div>
21 <div class="col-md-3">
22 <a href="/register" class="btn btn-lg btn-block btn-light">Register here</a>
23 </div>
24 </div>
25 </form>
26</div>
27
Note: See TracBrowser for help on using the repository browser.