iprestrictioncontent.jspf

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

JSPF
57
字号
<%@ taglib uri="http://struts.apache.org/tags-bean" prefix="bean" %>
<%@ taglib uri="http://struts.apache.org/tags-html" prefix="html" %>
<%@ taglib uri="http://struts.apache.org/tags-logic" prefix="logic" %>
<%@ taglib uri="/sslexplorer/taglibs/explorer" prefix="explorer" %>
<%@ taglib uri="/sslexplorer/taglibs/table" prefix="table" %>
<%@ taglib uri="/sslexplorer/taglibs/input" prefix="input" %>

<div id="page_ip_restriction">
	<explorer:form method="post" action="/createIpRestriction.do">
		<div class="dialog_content">
			<html:hidden property="actionTarget" />
			<html:hidden property="referer" />
			<html:hidden property="_charset_"/>	
			<table class="dialog_form_table">
				<tbody>
					<tr class="formText">
						<td class="label">
							<div class="required">
								<bean:message key="ipRestrictions.ipAddress" bundle="security" />
							</div>
						</td>
						<td class="value">
							<div>
								<html:text property="ipAddress" size="40"/>
							</div>
						</td>
					</tr>	
					<tr class="formBlock">	
						<td class="value" colspan="2">
							<input name="type" type="radio" value="denied"	checked="checked" > 
							<bean:message key="ipRestrictions.denyAccess" bundle="security" />
							<br/>
							<input name="type" type="radio" value="allow"/> 
							<bean:message key="ipRestrictions.allowAccess" bundle="security" />
						</td>
					</tr>
				</tbody>
				<tfoot>
					<tr>
						<td colspan="2">
							<div class="button_bar">
								<div class="button_bar">
									<div class="formButton">
										<html:submit styleClass="save" onclick="setActionTarget('commit'); return true"><bean:message key="ipRestrictions.submit" bundle="security"/></html:submit>
									</div>
									<div class="formButton">
										<html:submit styleClass="cancel" onclick="setActionTarget('cancel'); return true"><bean:message key="createIpRestriction.cancel" bundle="security"/></html:submit>
									</div>
								</div>
							</div>
						</td>
					</tr>
				</tfoot>
			</table>
		</div>
	</explorer:form>
</div>

⌨️ 快捷键说明

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