31 lines
987 B
HTML
31 lines
987 B
HTML
<!DOCTYPE html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="UTF-8" />
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
|
|
<title>Document</title>
|
|
<style>
|
|
html,
|
|
body {
|
|
padding: 0.2em;
|
|
width: 8em;
|
|
}
|
|
#content {
|
|
color: red;
|
|
}
|
|
</style>
|
|
</head>
|
|
<body>
|
|
<a id="login" href="https://fleyx.com/userSpace/ssoAuth" target="_blank">点击登录</a>
|
|
<div id="action" style="display: none">
|
|
<button id="logout">退出登陆</button>
|
|
<button title="同步云端书签到浏览器(覆盖本地)">同步云端书签</button>
|
|
<button title="同步浏览器书签到云端(覆盖云端)">同步浏览器</button>
|
|
</div>
|
|
<p id="content"></p>
|
|
<script type="text/javascript" src="/static/js/axios.min.js"></script>
|
|
<script type="text/javascript" src="/static/js/config.js"></script>
|
|
<script type="text/javascript" src="/popup/index.js"></script>
|
|
</body>
|
|
</html>
|