-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathauth_finish.html
38 lines (35 loc) · 1.5 KB
/
auth_finish.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>用户中心 - linux.do 用户授权</title>
<!-- Tell the browser to be responsive to screen width -->
<meta name="viewport" content="width=device-width, initial-scale=1">
<link href="/static/css/app.css" rel="stylesheet">
</head>
<body>
<div class="header">
<div class="menu">
<a href="/" class="a-link menu-item">m3u8在线播放器</a>
<a href="/mpd-player.html" class="a-link menu-item">mpd在线播放器</a>
<a href="/iptv-list.html" class="a-link menu-item">IPTV 在线观看</a>
<!-- <a href="/cinema.html" class="a-link menu-item">简单私人影视站 DEMO</a> -->
<!-- <a href="/download.html" class="a-link menu-item">软件下载</a> -->
<a href="/apply-code.html" class="a-link menu-item" >申请激活码</a>
<a href="https://v6t.ipip.net/" data-href="https://test-ipv6.com/" class="a-link menu-item" target="_blank">ipV6 检测</a>
<a href="/demo.html" class="a-link menu-item">LD OAuth2</a>
</div>
</div>
<div style="display: flex; flex-direction: column; align-items: center; justify-content: center; padding: 20px;">
<h1> 用户完成授权</h1>
<p id="userInfo"></p>
</div>
</body>
<style>
</style>
<script>
document.addEventListener('DOMContentLoaded', function (){
document.getElementById("userInfo").innerText = window.location.search
}, false);
</script>
</html>