-
Notifications
You must be signed in to change notification settings - Fork 64
Expand file tree
/
Copy pathSignIn.html
More file actions
34 lines (24 loc) · 963 Bytes
/
SignIn.html
File metadata and controls
34 lines (24 loc) · 963 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
<!DOCTYPE html>
<html xmlns:th="https://www.thymeleaf.org">
<head>
<title>Sign In</title>
<link rel="stylesheet" type="text/css" href="/styles/master.css">
<link rel="stylesheet" type="text/css" href="/styles/s=SignIn.css">
<script type="text/javascript" src="/scripts/master.js" defer></script>
<script type="text/javascript" src="/scripts/SignIn.js" defer></script>
</head>
<body>
<div>
<h1>Sign In</h1>
</div>
<div id="main" class="main">
<div id="error" th:class="${#strings.isEmpty(errorMessage)} ? hidden : ''">
<h4 id="errorMessage" class="error-message" th:text="${errorMessage}"></h4>
</div>
<form action = "/" method = "POST" onsubmit="return ValidationEvent()">
<input id = "number" type = "number" name = "number" placeholder = "Employee ID" th:value="${number}"/> <br>
<input id = "password" type = "password" name = "password" placeholder = "Password" /> <br>
<input type = "submit" value = "Sign In" />
</form>
</body>
</html>