ramani
Diff Revisions
545
vs
546
for /Ramani/web/login.xhtml
|
@@ -6,9 +6,10 @@ |
6 |
6 |
|
xmlns:f="http://xmlns.jcp.org/jsf/core"> |
7 |
7 |
|
<h:head> |
8 |
8 |
|
<title>Log In</title> |
|
9 |
+ |
|
9 |
10 |
|
</h:head> |
10 |
11 |
|
<h:body> |
11 |
|
- |
|
|
12 |
+ |
<h:outputStylesheet name="loginCss.css"/> |
12 |
13 |
|
<p:layout fullPage="true"> |
13 |
14 |
|
<p:growl showDetail="true"/> |
14 |
15 |
|
|
|
@@ -16,10 +17,7 @@ |
16 |
17 |
|
<p:layoutUnit position="center" |
17 |
18 |
|
style="border-color: transparent;"> |
18 |
19 |
|
<div align="center"> |
19 |
|
- |
<p:panel |
20 |
|
- |
style="width: 340px; height: 340px; border-color: transparent; |
21 |
|
- |
border-radius: 2px; box-shadow: 0 2px 2px 0; |
22 |
|
- |
background-color: #f7f7f7; margin-top: 60px"> |
|
20 |
+ |
<p:panel > |
23 |
21 |
|
<span style="font-size: 30px; font-family: serif; font-weight: bold; color: black">Ramani</span> |
24 |
22 |
|
<form action="#{request.contextPath}/j_spring_security_check" |
25 |
23 |
|
method="post"> |
|
@@ -32,30 +30,24 @@ |
32 |
30 |
|
<br/> |
33 |
31 |
|
</h:panelGroup> |
34 |
32 |
|
<p:inputText id="j_username" placeholder="#{msg['login.NomeUsuario']} " |
35 |
|
- |
style="width: 280px; height: 35px "/> |
|
33 |
+ |
/> |
36 |
34 |
|
<br/> |
37 |
35 |
|
<p:password id="j_password" placeholder="#{msg['login.Senha']}" |
38 |
|
- |
style="width: 280px; height: 35px"/> |
|
36 |
+ |
/> |
39 |
37 |
|
<br/> |
40 |
38 |
|
<h:form> |
41 |
|
- |
<p:commandButton value="#{msg['login.Entrar']}" |
|
39 |
+ |
<p:commandButton value="#{msg['login.Entrar']}" id="btLogin" |
42 |
40 |
|
ajax="false" |
43 |
|
- |
style="width: 293px; |
44 |
|
- |
background-color: #4d90fe; |
45 |
|
- |
background-size: 0%; |
46 |
|
- |
border-color: transparent; |
47 |
|
- |
border-style: none; |
48 |
|
- |
color: white; |
49 |
|
- |
padding: 10px "/> |
|
41 |
+ |
/> |
50 |
42 |
|
</h:form> |
51 |
43 |
|
</h:panelGrid> |
52 |
44 |
|
</form> |
53 |
45 |
|
<h:form> |
54 |
46 |
|
<p:commandLink action="/criarColaborador.xhtml" |
55 |
|
- |
value="#{msg['login.Cadastre']}" |
|
47 |
+ |
value="#{msg['login.Cadastre']}" |
56 |
48 |
|
ajax="false" immediate="true" |
57 |
|
- |
style="color: #3399ff; |
58 |
|
- |
margin-left: 170px; text-decoration: none; |
|
49 |
+ |
styleClass="linkStyle" |
|
50 |
+ |
style=" |
59 |
51 |
|
" |
60 |
52 |
|
/> |
61 |
53 |
|
|