projectx/web/templates/manage/home/dashboard.tmpl
2025-06-12 10:20:26 +08:00

18 lines
946 B
Cheetah
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

<div class="layui-row h-all">
<div class="layui-col-md12" style="padding: 10px;">
<div class="layui-panel userinfo">
<div class="logo">
<img src="{{.User.Avatar}}" alt="logo">
</div>
<div class="info">
<p class="name">欢迎您,{{.Auth.Username}} ({{.Auth.RoleName}})</p>
{{if eq .LoginCount 1}}
<p>这是您第 1 次登录,本次登录日期:{{dateFormat .LoginTime.ThisLoginTime}},如果不是您本人登录,请及时修改密码 。</p>
{{else}}
<p>这是您第 {{.LoginCount}} 次登录,本次登录日期:{{dateFormat .LoginTime.ThisLoginTime}}
上次登录日期:{{dateFormat .LoginTime.LastLoginTime}},如果不是您本人登录,请及时修改密码 。</p>
{{end}}
</div>
</div>
</div>
</div>