1
0
Files
helper/application/mobile/view/setting/email.html
2020-08-06 14:58:51 +08:00

25 lines
752 B
HTML
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.

{extend name="public/base" /}
{block name="header"}
<header class="ce-header ce-text-c header">
<span class="header-btn header-left">
<a href="{:url('setting/index')}" class="header-return-btn"><i class="fa fa-angle-left"></i>&nbsp;返回</a>
</span>
<span class="header-btn header-right">
<a href="#" class="header-experience-share ajax-post">保存</a>
</span>
修改Email
</header>
{/block}
{block name="body"}
<form class="ce-margin-t-sm">
<ul class="user-data-list user-data-form">
<li class="ce-padding-sm">
<label>Email</label>
<input type="email" name="email" placeholder="请输入Email地址" value="{$user.info.email}" />
</li>
</ul>
</form>
{/block}