Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Create qr-login.html #154

Merged
merged 1 commit into from
Oct 3, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
55 changes: 55 additions & 0 deletions qr-login.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,55 @@
---
permalink: /qr-login.html
layout: default
---

<style>
.selectable {
-webkit-user-select: all;
user-select: all;
cursor: pointer;
padding: 5px;
background-color: #b2b2b2;
border-radius: 5px;
display: inline-block;
margin-top: 10px;
}
</style>
<script src="https://cdn.jsdelivr.net/npm/[email protected]/build/qrcode.min.js"></script>
<script>
function generateQRCode() {
const urlParams = new URLSearchParams(window.location.search);
const verificationUri = urlParams.get('verificationUri');
const userCode = urlParams.get('userCode');
const login = urlParams.get('login');
if (!verificationUri || !userCode) {
return; // 不显示任何内容
}
const qrcodeContainer = document.getElementById('qrcode');
if (login === '1') {
const userPrompt = document.createElement('p');
userPrompt.innerHTML = `请复制代码 <span class="selectable" id="userCode">${userCode}</span> <br>并前往 <a href="${verificationUri}">${verificationUri}</a>,输入代码允许访问并登录微软账户。`;
qrcodeContainer.appendChild(userPrompt);
} else {
const currentUrl = window.location.href + '?login=1';
console.log("currentUrl: ", currentUrl);
const canvas = document.createElement('canvas');
QRCode.toCanvas(canvas, currentUrl, function (error) {
if (error) console.error(error);
});
qrcodeContainer.appendChild(canvas);
const promptMessage = document.createElement('p');
promptMessage.innerHTML = `请扫描二维码。`;
qrcodeContainer.appendChild(promptMessage);
}
}
window.onload = function() {
generateQRCode();
}
</script>

<div id="qrcode"></div>

<noscript>
<p>请开启 JavaScript 以查看二维码生成内容。</p>
</noscript>