⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 edituserprofile.jsp

📁 开源的OpenId的一个java实现
💻 JSP
字号:
<%@ taglib prefix="s" uri="/struts-tags"%>
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" 
"http://www.w3.org/TR/html4/strict.dtd">
<html>
<head>
<title>WSO2 Identity Solution</title>
<link type="text/css" rel="stylesheet" href="css/styles.css" />
</head>
<body>
<!-- Include the header -->
<s:include value="header.jsp" />

<table cellpadding="0" cellspacing="0" border="0" style="width: 100%;">
	<tr>
		<td class="right-back"></td>
		<td class="content" valign="top">
		<table cellpadding="0" cellspacing="0" border="0" style="width: 100%;">
			<tr>
				<td>
				<h1>WSO2 Identity Provider</h1>
				</td>
				<td align="right" valign="top"><img
					src="images/wso2-identity-content-rounded.jpg" align="top" /></td>
			</tr>
		</table>

		<br>

		<s:iterator value="errorMessages">
			<div class="error-message"><s:property /></div>
		</s:iterator> <s:iterator value="infoMessages">
			<div class="info-message"><s:property /></div>
		</s:iterator>
	
		<table cellpadding="0" cellspacing="10" border="0"
			class="login-header">
			<tr>
				<td valign="top" width="30%">
				<form action="EditUserProfileSubmit.action?profileName=<s:property value="profileName"/>" method="post">
				<strong>Update Profile:&nbsp;<s:property value="profileName"/> </strong><br />
				<!--todo -->
				<div class="errors"><s:actionerror /> <s:fielderror /></div>
				<i>Required fields <font class="required">*</font> </i>
				<table cellpadding="0" cellspacing="10" border="0"
					class="form-table">				
					<s:iterator value="claims">
						<tr>
							<td><s:property value="claim.displayTag" /></td>
							<td width="2"><s:if test="claim.required==true">
								<font class="required">*</font>
							</s:if></td>
							<td><input type="text"  value="<s:property value="claimValue"/>"  name="<s:property value="claim.uri"/>"></td>
						</tr>
					</s:iterator>

					<tr>
						<td></td>
						<td></td>
						<td><input type="submit" value="Update" class="button">
						<input type="button" value="Cancel"
							onClick="javascript:window.location = 'ShowMain.action'"
							class="button"></td>
					</tr>
				</table>
				</form>
				</td>

			</tr>
		</table>
		</td>
	</tr>
</table>

<!-- Include footer -->
<s:include value="footer.jsp" />

</body>

</html>

⌨️ 快捷键说明

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