50 lines
1009 B
Plaintext
50 lines
1009 B
Plaintext
<#assign base=request.contextPath />
|
|
<#import "../common/defaultLayout.ftl" as defaultLayout>
|
|
<@defaultLayout.layout>
|
|
<style>
|
|
|
|
.am-icon-btn{
|
|
padding-top: 12px;
|
|
}
|
|
</style>
|
|
<div class="admin-content">
|
|
<div class="am-cf am-padding">
|
|
<div class="am-fl am-cf"><strong class="am-text-primary am-text-lg">首页</strong> / <small>管理中心</small></div>
|
|
</div>
|
|
|
|
<div class="am-g">
|
|
<div class="am-u-sm-12">
|
|
<table class="am-table">
|
|
<tbody>
|
|
<tr>
|
|
<td class="am-primary" >用户名称: <span style="color:#5eb95e">${Session["realsName"]!""}</span></td>
|
|
<td class="am-primary">上次登录时间: <span style="color:#5eb95e">${Session["lastLoginTime"]!""}</span></td>
|
|
</tr>
|
|
</tbody>
|
|
</table>
|
|
</div>
|
|
</div>
|
|
|
|
</div>
|
|
<script type="text/javascript">
|
|
$(function(){
|
|
|
|
})
|
|
</script>
|
|
</@defaultLayout.layout>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|