mirror of
https://gitee.com/smartchart/smartchart
synced 2025-05-05 09:09:24 +08:00
44 lines
1.5 KiB
HTML
44 lines
1.5 KiB
HTML
<!doctype html>
|
|
<html>
|
|
<head>
|
|
<meta charset="utf-8">
|
|
<title>你需要激活</title>
|
|
<meta name="keywords" content="你需要激活" />
|
|
</head>
|
|
<link rel="stylesheet" media="all" href="/static/index/input.css">
|
|
</head>
|
|
<body>
|
|
<div class="wrapper">
|
|
<form>
|
|
<h1>SmartChart</h1>
|
|
<h5 id="msg">为方便交流,需加微信或群获取激活码,请支持一杯咖啡</h5>
|
|
<h5><img src="https://www.smartchart.cn/static/images/auth.png" height="150px"></h5>
|
|
<div class="group">
|
|
<input id="authkey" placeholder="请输入你的KEY" required="required" /><span class="highlight"></span><span class="bar"></span>
|
|
</div>
|
|
</form>
|
|
<div class="btn-box">
|
|
<a id='submitup' class="btn btn-submit">激活</a>
|
|
<a type="button" href="https://qm.qq.com/cgi-bin/qm/qr?k=eC34KwVvEtMvfh8Zyn1RSfYlzZvuvm7i&jump_from=webapi" class="btn btn-cancel">加Q群</a>
|
|
<a href="/echart/register/" class="btn btn-submit">登记</a>
|
|
<h5><a href="https://www.smartchart.cn">@smartchart.cn</a></h5>
|
|
</div>
|
|
</div>
|
|
|
|
<script src="/static/js/jquery-2.2.3.min.js"></script>
|
|
<script>
|
|
$("#submitup").click(function(){
|
|
let key = $.trim($('#authkey').val());
|
|
if(key === ''){
|
|
$('#msg').html('请输入KEY');
|
|
return;
|
|
}
|
|
$.ajax({type: "POST",url: '/echart/auth_right/', data:{key: key} ,success: function (data)
|
|
{ $('#msg').html(data['msg']);
|
|
} });
|
|
});
|
|
</script>
|
|
|
|
|
|
</body>
|
|
</html> |