Projekt

Obecné

Profil

Stáhnout (958 Bajtů) Statistiky
| Větev: | Revize:
1
<html xmlns:th="http://www.thymeleaf.org"
2
	  xmlns:layout="http://www.ultraq.net.nz/thymeleaf/layout"
3
	  layout:decorator="~{/layouts/layout}">
4

    
5
	<div layout:fragment="content">
6

    
7
		<div class="container">
8
			<h1>
9
				Přihlášení
10
			</h1>
11
		</div>
12

    
13
		<div class="container box ">
14

    
15
			<div th:if="${param.error}" >
16
				<div class="alert alert-danger">
17
					<span>Špatné jméno nebo heslo</span>
18
				</div>
19
			</div>
20

    
21
			<form th:action="@{/login}" method="post"
22
								xmlns:th="http://www.w3.org/1999/xhtml">
23
				<table>
24
					<tr>
25
						<td>Přihlašovací jméno:</td>
26
						<td><input type="text" name="username" id="username" class="form-control"/></td>
27
					</tr>
28
					<tr>
29
						<td>Heslo:</td>
30
						<td><input type="password" name="password" id="password" class="form-control"/></td>
31
					</tr>
32
					<tr>
33
						<td><button class="btn-primary btn" type="submit">Přihlásit</button></td>
34
					</tr>
35
				</table>
36
			</form>
37
		</div>
38
	</div>
39
</html>
(4-4/4)