(function() {
// 1. التحقق من حالة التوثيق ورقم الهوية
const isAuthenticated = sessionStorage.getItem('authenticated');
const studentID = sessionStorage.getItem('user_national_id');
// 2. إذا لم يكن الطالب مسجلاً أو الهوية مفقودة، يتم توجيهه فوراً للوجن
if (isAuthenticated !== 'true' || !studentID) {
// مسح أي بيانات مشوهة لضمان الأمان
sessionStorage.clear();
// تحويل الطالب لصفحة تسجيل الدخول
window.location.replace("https://sstli.com/login/");
} else {
// الطالب موثق بنجاح
console.log("تم التحقق من الوصول للطالب: " + studentID);
// يمكنك الآن استخدام المتغير studentID في هذه الصفحة لعمل أي API Call
window.currentStudentID = studentID;
}
})();