Init Commit

This commit is contained in:
ldy
2025-06-09 14:03:07 +08:00
parent 7d35000dd1
commit 2f40268f53
10 changed files with 451 additions and 0 deletions

30
index.html Normal file
View File

@@ -0,0 +1,30 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="blocks.css">
<title>Table Information</title>
</head>
<body>
<div id="tableSections"></div>
<script src="block_func.js"></script>
<script src="block_layouts.js"></script>
<script>
window.onload = function() {
const urlParams = new URLSearchParams(window.location.search);
const inputCvId = urlParams.get('cvId');
const inputAccessKey = urlParams.get('accessKey');
if (inputCvId) {
displayCv(inputCvId, inputAccessKey);
}
else {
document.getElementById('tableSections').innerText = 'No cvId provided.';
}
};
</script>
</body>
</html>