usernameauth.jspf

来自「这是linux下ssl vpn的实现程序」· JSPF 代码 · 共 41 行

JSPF
41
字号
<%@ page import="com.sslexplorer.boot.Util" %>
<%@ page import="com.sslexplorer.security.forms.LogonForm" %>
<%@ taglib uri="http://struts.apache.org/tags-bean" prefix="bean"%>
<%@ taglib uri="http://struts.apache.org/tags-tiles" prefix="tiles"%>
<%@ taglib uri="http://struts.apache.org/tags-logic" prefix="logic"%>
<%@ taglib uri="http://struts.apache.org/tags-html" prefix="html"%>
<%@ taglib uri="/sslexplorer/taglibs/explorer" prefix="explorer"%>

<div id="page_login_user_password">
	<explorer:form styleClass="dialog_form" autocomplete="OFF" method="post" action="/usernameLogon.do" focus="username">
		<html:hidden property="_charset_"/>
		<div class="dialog_content">
			<div class="inner">
				<table class="dialog_form_table" id="centered">
					<tbody>
						<tr>
							<td class="value">
								<label for="username">
									<bean:message key="login.username" bundle="security" /> 
								</label>
								<br/>										
								<html:text property="username" maxlength="50" styleId="password"/>
							</td>
						</tr>
					</tbody>
					<tfoot>
						<tr>
							<td colspan="2">							
								<div class="button_bar">
									<div class="formButton">
										<html:submit styleClass="ok"><bean:message key="login.login" bundle="security"/></html:submit>
									</div>
								</div>
							</td>						                        
						</tr>
					</tfoot>
				</table>
			</div>
		</div>
	</explorer:form> 
</div>

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?