Changeset 8036 for branches/3.19-stable/www/switch.jsp
- Timestamp:
- May 25, 2022, 8:31:55 AM (10 months ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/3.19-stable/www/switch.jsp
r7954 r8036 38 38 import="net.sf.basedb.clients.web.extensions.ExtensionsControl" 39 39 import="net.sf.basedb.clients.web.extensions.JspContext" 40 import="net.sf.basedb.clients.web.extensions.DynamicActionAttributeSupport" 40 41 import="net.sf.basedb.clients.web.extensions.login.LoginFormAction" 41 42 import="net.sf.basedb.clients.web.extensions.login.PasswordLoginFormFactory" … … 105 106 <base:body data-login-form="<%=HTML.encodeTags(selectedLoginForm)%>" data-requested-form="<%=HTML.encodeTags(requestedLoginForm) %>"> 106 107 <h1>Switch user <base:help helpid="switchuser" /></h1> 107 <form name="login" action="login.jsp" method="post"> 108 <form name="login" action="login.jsp" method="post" 109 <%=DynamicActionAttributeSupport.getAttributesString(loginAction)%> 110 > 108 111 <input type="hidden" name="ID" value="<%=ID%>"> 109 112 <input type="hidden" name="again" value="1"> … … 148 151 data-use-last-login="0" 149 152 maxlength="100" 150 tabindex="0"> 153 tabindex="0" 154 <%=DynamicActionAttributeSupport.getAttributesString(loginField)%> 155 > 151 156 </td> 152 157 </tr> … … 159 164 <%=valueIfNotNull("placeholder=\"", passwordField.getPlaceHolder(), "\"") %> 160 165 maxlength="80" 161 tabindex="0"> 166 tabindex="0" 167 <%=DynamicActionAttributeSupport.getAttributesString(passwordField)%> 168 > 162 169 </td> 163 170 </tr> … … 174 181 <%=valueIfNotNull("placeholder=\"", extraField.getPlaceHolder(), "\"") %> 175 182 maxlength="80" 176 tabindex="0"> 183 tabindex="0" 184 <%=DynamicActionAttributeSupport.getAttributesString(extraField)%> 185 > 177 186 </td> 178 187 </tr>
Note: See TracChangeset
for help on using the changeset viewer.