-
Notifications
You must be signed in to change notification settings - Fork 0
/
jsf.html
64 lines (62 loc) · 1.86 KB
/
jsf.html
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
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html
xmlns="http://www.w3.org/1999/xhtml"
xmlns:h="http://java.sun.com/jsf/html"
xmlns:f="http://java.sun.com/jsf/core"
>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
<title>Traffic Management System Login</title>
<link rel="stylesheet" href="styles.css" />
<link
rel="stylesheet"
href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.0.0-beta3/css/all.min.css"
/>
</head>
<body>
<h1 class="main-heading">Traffic Management System</h1>
<div class="login-container">
<h2>Login</h2>
<h:form>
<div class="input-group">
<i class="fas fa-user"></i>
<h:inputText
id="username"
value="#{loginBean.username}"
required="true"
requiredMessage="Username is required"
placeholder="Username"
styleClass="input"
/>
</div>
<div class="input-group">
<i class="fas fa-lock"></i>
<h:inputSecret
id="password"
value="#{loginBean.password}"
required="true"
requiredMessage="Password is required"
placeholder="Password"
styleClass="input"
/>
</div>
<div class="input-group">
<i class="fas fa-users"></i>
<h:inputText
id="roleName"
value="#{loginBean.roleName}"
required="true"
requiredMessage="Role Name is required"
placeholder="Role Name"
styleClass="input"
/>
</div>
<h:commandButton
value="Login"
action="#{loginBean.login}"
styleClass="button"
/>
</h:form>
</div>
</body>
</html>