Integration with Sakai LMS
Sakai is a robust and versitile Learning Management System designed to enhance the educational experience. It offers a comprehensive suite of tools for course management, collaboration, and assessment, making it a go-to platform for educators and institutions worldwide. With its user-friendly interface and powerful features, Sakai supports innovative teaching methods and fosters student engagement. Whether you're creating interactive courses, facilitating online discussions, or tracking student progress, Sakai provides the tools you need to deliver high-quality education.
Exclusive exam integrity features of proctoring software have been proven to be helpful at any type of the Corporate Online Assessment or Higher Education Exams.
<!DOCTYPE html>
<html>
<head></head>
<body>
<p>There is nothing here. This is a service page for proctoring.</p>
<script>
(function () {
var PROCTORING_SERVER = 'https://your-proctoring-server';
var w = window.parent;
var script = w.document.createElement('script');
script.setAttribute('src', `${PROCTORING_SERVER}/sdk/supervisor.js`);
script.setAttribute('data-supervisor', 'start');
w.document.body.appendChild(script);
w.document.body.style.overflow = 'hidden';
script.onload = function() {
if (w.supervisor) {
w.supervisor.on('load', function(iframe) {
var hash = new URL(iframe.src).hash.slice(1);
var d = iframe.contentDocument;
var input = d.querySelector('input[type="password"]');
if (input) input.value = hash;
var c = iframe.contentWindow;
var pathname = c.location.pathname;
if (pathname.endsWith('/jsf/delivery/confirmSubmit')) {
w.supervisor.stop().then(function () {
return w.supervisor.logout({ redirect: true });
});
}
});
}
};
})();
</script>
</body>
</html>
| |