31 lines
803 B
HTML
31 lines
803 B
HTML
<!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>
|