📄 statopenidbyuser.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>
<script>
function showhide(id){
var to_showhide=document.getElementById(id+'-content');
if(to_showhide.style.display=='block') to_showhide.style.display='none';
else to_showhide.style.display='block';
}
function showhideForm(id){
var to_showhide=document.getElementById(id+'-form');
var to_hide=document.getElementById(id+'-content');
if(to_showhide.style.display=='block'){
to_showhide.style.display='none';
}
else{
to_showhide.style.display='block';
to_hide.style.display='none';
}
}
</script>
<title>WSO2 Identity Solution | Management Console</title>
<link type="text/css" rel="stylesheet" href="css/styles.css" />
</head>
<body>
<div class="page">
<!-- START Header -->
<s:include value="header.jsp" />
<!-- END Header -->
<!-- START Content -->
<table cellpadding="0" cellspacing="0" border="0" class="middle">
<tr>
<td class="left-menu" valign="top">
<div class="menu-back">
<!-- START menu -->
<s:include value="menu.jsp" />
<!-- END menu -->
</div>
</td>
<td class="content" valign="top">
<div class="breadcrumb"><a class="breadcrumb-link" href="ShowMain.action">Home</a> | <a class="breadcrumb-link" href="ShowStatistics.action">Statistics</a> | OpenIDs grouped by user</div>
<h1 class="headding-statistics">OpenIDs grouped by user</h1>
<p><s:property value="description" /></p>
<s:set name="type" value="cardsByUser"/>
<table cellpadding="0" cellspacing="0" border="0" class="data-table">
<tr>
<th>UserId</th>
<th>OpenID</th>
<th>Visits</th>
<th>Last Login</th>
</tr>
<s:iterator value="dataList" status="status">
<tr>
<td><s:property value="userId" /></td>
<td><s:property value="openID" /></td>
<td><s:property value="cardCount" /></td>
<td><s:property value="lastVisit" /></td>
</tr>
</s:iterator>
</table>
<s:a href="ShowStatistics.action" cssClass="back-link" >Back</s:a>
</td>
</tr>
</table>
<!-- END Content -->
</div>
<!-- Include footer -->
<s:include value="footer.jsp" />
</body>
</html>
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -