Skip to main content
Learn managment

Log in to Learn managment

Lost password?

Is this your first time here?

Hi!

For full access to courses you'll need to create yourself an account.

All you need to do is make up a username and password and use it in the form on this page!

If someone else has already chosen your username then you'll have to try again using a different username.

Create new account

Some courses may allow guest access

© 2026 Learn Management System. All rights reserved.

You are not logged in.
Data retention summary
Get the mobile app
const moodleURL = M.cfg.wwwroot; const token = "638b0f544088314f2eb0a82603ca9071"; async function loadCategories(){ const response = await fetch( moodleURL + "/webservice/rest/server.php?wstoken=" + token + "&wsfunction=core_course_get_categories&moodlewsrestformat=json" ); const categories = await response.json(); const tabs = document.getElementById("lj-tabs"); categories.slice(0,5).forEach((cat,i)=>{ const tab = document.createElement("button"); tab.className="lj-tab"; tab.innerText=cat.name; if(i===0) tab.classList.add("active"); tab.onclick=()=>loadCourses(cat.id,tab); tabs.appendChild(tab); if(i===0) loadCourses(cat.id); }); } async function loadCourses(categoryId,tab){ document.querySelectorAll(".lj-tab").forEach(t=>t.classList.remove("active")); if(tab) tab.classList.add("active"); const response = await fetch( moodleURL + "/webservice/rest/server.php?wstoken=" + token + "&wsfunction=core_course_get_courses_by_field&field=category&value=" + categoryId + "&moodlewsrestformat=json" ); const data = await response.json(); const courses = data.courses; const container = document.getElementById("lj-courses"); container.innerHTML=""; courses.forEach(course=>{ const image = course.overviewfiles?.length ? course.overviewfiles[0].fileurl + "&token=" + token : "https://via.placeholder.com/400x200"; const card = document.createElement("div"); card.className="lj-card"; card.innerHTML = `
${course.fullname}
${course.summary ? course.summary.substring(0,80) : ""}
Lessons Duration
$10 Enroll Now
`; container.appendChild(card); }); } document.addEventListener("DOMContentLoaded", loadCategories);
Powered by Moodle