36 lines
1.1 KiB
HTML
36 lines
1.1 KiB
HTML
{template "install/header.html"}
|
|
|
|
<div class="portlet light">
|
|
<div class="portlet-title">
|
|
<div class="caption">
|
|
<i class="fa fa-file-text-o font-green"></i>
|
|
<span class="caption-subject font-green">软件使用协议</span>
|
|
</div>
|
|
</div>
|
|
<div class="portlet-body" style="line-height: 24px;">
|
|
|
|
</div>
|
|
<div class="portlet-title" style="min-height: 18px;">
|
|
</div>
|
|
<div class="portlet-body text-center">
|
|
<a href="javascript:;" disabled="" id="ok" class="btn btn-success"> ... </a>
|
|
</div>
|
|
</div>
|
|
<script>
|
|
var Seconds = 10;
|
|
var setIntervalID;
|
|
function ok() {
|
|
var ok = $("#ok");
|
|
if (Seconds <= 0) {
|
|
ok.html("同意协议");
|
|
ok.attr('href', '{$next_url}');
|
|
ok.attr('disabled', false);
|
|
clearInterval(setIntervalID);
|
|
} else {
|
|
ok.html("请仔细阅读协议还剩下(" + Seconds + ")秒");
|
|
}
|
|
Seconds--;
|
|
}
|
|
setIntervalID=setInterval("ok()", 1000);
|
|
</script>
|
|
{template "install/footer.html"} |