You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
63 lines
2.0 KiB
63 lines
2.0 KiB
<!DOCTYPE html>
|
|
<!--[if IE 8]> <html class="ie ie8"> <![endif]-->
|
|
<!--[if IE 9]> <html class="ie ie9"> <![endif]-->
|
|
<!--[if gt IE 9]><!--> <html> <!--<![endif]-->
|
|
<head>
|
|
<meta charset="utf-8">
|
|
<title>账号激活 {$site_name} </title>
|
|
<meta name="keywords" content="{$menu.menu_seo_key|default=$site_seo_keywords}" />
|
|
<meta name="description" content="{$menu.menu_seo_des|default=$site_seo_description}">
|
|
{include file="public:head" /}
|
|
</head>
|
|
|
|
<body class="body-white">
|
|
<div class="wrap">
|
|
{include file="public:nav" /}
|
|
<div id="main-cmf">
|
|
<div class="content">
|
|
<div class="container">
|
|
<div class="row">
|
|
<div class="col-lg-4 col-md-4 col-sm-6 col-xs-10 col-lg-offset-4 col-md-offset-4 col-sm-offset-3 col-xs-offset-1 animate_afr">
|
|
<h2 class="text-center" style="margin: 10% 0;">您的账号还未激活!</h2>
|
|
<div class="text-center" style="margin: 10% 0;">
|
|
<span class="profile-picture" style="width: 50%">
|
|
<img id="avatar" class="editable img-responsive editable-click editable-empty" alt="注册用户" src="__PUBLIC__/img/avatar.png">
|
|
</span>
|
|
<div class="space-4"></div>
|
|
<h5>{$email}</h5>
|
|
<h5>{:lang('resend active email')} <a href="{:url('home/Login/resend')}" style="color: red" class="rst-btn">重新发送</a></h5>
|
|
{if(!empty($mailurl))}
|
|
<a href="{$mailurl}" target="_blank">
|
|
<button class="btn btn-danger btn-xlg">
|
|
<i class="ace-icon fa fa-bolt bigger-110"></i>
|
|
立即激活
|
|
<i class="ace-icon fa fa-arrow-right icon-on-right"></i>
|
|
</button>
|
|
</a>
|
|
{/if}
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
{include file="public:footer"/}
|
|
</div>
|
|
{include file="public:scripts"/}
|
|
<script>
|
|
$(function () {
|
|
$('body').on('click','.rst-btn',function () {
|
|
var $url = this.href;
|
|
$.get($url, function (data) {
|
|
if (data.code == 1) {
|
|
layer.alert(data.msg, {icon: 6});
|
|
} else {
|
|
layer.alert(data.msg, {icon: 5});
|
|
}
|
|
}, "json");
|
|
return false;
|
|
});
|
|
});
|
|
</script>
|
|
</body>
|
|
</html>
|