Init Commit
This commit is contained in:
30
index.html
Normal file
30
index.html
Normal 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>
|
||||
Reference in New Issue
Block a user