Changeset 8036 for branches/3.19-stable/www/main.jsp
- Timestamp:
- May 25, 2022, 8:31:55 AM (10 months ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/3.19-stable/www/main.jsp
r7954 r8036 52 52 import="net.sf.basedb.clients.web.extensions.login.FieldInfo" 53 53 import="net.sf.basedb.clients.web.extensions.login.PasswordLoginFormFactory" 54 import="net.sf.basedb.clients.web.extensions.DynamicActionAttributeSupport" 54 55 import="net.sf.basedb.util.Values" 55 56 import="java.util.Date" … … 128 129 </base:head> 129 130 <base:body style="padding-top: 5em;" data-login-form="<%=HTML.encodeTags(selectedLoginForm)%>" data-requested-form="<%=HTML.encodeTags(requestedLoginForm) %>"> 130 <form name="login" action="login.jsp" method="post"> 131 <form name="login" action="login.jsp" method="post" 132 <%=DynamicActionAttributeSupport.getAttributesString(loginAction)%> 133 > 131 134 <input type="hidden" name="ID" value="<%=ID%>"> 132 135 <input type="hidden" name="again" value="<%=again?1:0%>"> … … 195 198 <%=loginAction.rememberLastLogin() ? "" : "autocomplete=\"off\" data-use-last-login=\"0\""%> 196 199 maxlength="100" 197 tabindex="1"> 200 tabindex="1" 201 <%=DynamicActionAttributeSupport.getAttributesString(loginField)%> 202 > 198 203 </td> 199 204 </tr> … … 207 212 <%=valueIfNotNull("placeholder=\"", passwordField.getPlaceHolder(), "\"") %> 208 213 maxlength="80" 209 tabindex="2"> 214 tabindex="2" 215 <%=DynamicActionAttributeSupport.getAttributesString(passwordField)%> 216 > 210 217 </td> 211 218 <td <%=extraField != null?"rowspan=\"2\"" : "" %> style="vertical-align: bottom;"> … … 237 244 <%=valueIfNotNull("placeholder=\"", extraField.getPlaceHolder(), "\"") %> 238 245 maxlength="80" 239 tabindex="3"> 246 tabindex="3" 247 <%=DynamicActionAttributeSupport.getAttributesString(extraField)%> 248 > 240 249 </td> 241 250 </tr>
Note: See TracChangeset
for help on using the changeset viewer.