selectauthschemecontent.jspf

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

JSPF
53
字号
<%@ page contentType="text/html;charset=UTF-8" language="java"%>
<%@ page import="com.sslexplorer.security.Constants"%>
<%@ page import="com.sslexplorer.security.AuthenticationScheme"%>
<%@ taglib uri="http://struts.apache.org/tags-bean" prefix="bean" %>
<%@ taglib uri="http://struts.apache.org/tags-html" prefix="html" %>
<%@ taglib uri="/sslexplorer/taglibs/explorer" prefix="explorer" %>


<!--  Display warning if cookies are not enabled // -->
<script language="javascript1.1" type="text/javascript">
<!--
	if (!document.cookie) {
		document.writeln("<span class='smallText'><p align='center' class='warningText'><bean:message key='login.cookieWarning' bundle='security'/></p></span>");
		document.writeln("<br/>");
	}		 
// -->
</script>

<div id="page_select_auth_scheme">         			
	<explorer:form styleClass="dialog_form" method="post" action="/showLogon.do" focus="selectedAuthenticationScheme">
		<html:hidden property="username"/>
		<div class="dialog_content">
			<table class="dialog_form_table" align="center" cellpadding="0" cellspacing="0" border="0">
				<tbody>
					<tr>
						<td class="label">
							<bean:message key="selectAuthenticationScheme.authenticationScheme" bundle="security" /> 
						</td>
						<td class="value">
							<html:select name="schemeSelectionForm" property="selectedAuthenticationScheme">
								<html:optionsCollection name="schemeSelectionForm" property="authenticationSchemes" />
							</html:select>
						</td>
					</tr>
				</tbody>
				<tfoot>
					<tr>
						<td colspan="2">							
							<div class="button_bar">
								<div class="formButton">	
									<input class="ok" type="submit" value="<bean:message key='selectAuthenticationScheme.submit' bundle='security'/>"/>
								</div>		
								<div class="formButton">	
									<input class="cancel" onclick="self.location = '/showLogon.do?reset'" type="button" value="<bean:message key='selectAuthenticationScheme.cancel' bundle='security'/>"/>
								</div>
							</div>
						</td>
					</tr>
				</tfoot>
			</table>
		</div>			
	</explorer:form>
</div>

⌨️ 快捷键说明

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