NovaEdge Academy DocsDocs
DocsQuick Start Guide

Quick Start Guide

Getting Started

Get up and running with your NovaEdge Academy account in less than 2 minutes.

1. Account Registration

You can create a free student account using either:

  • Standard Email & Password Registration
  • One-Click Google Sign-In (OAuth 2.0)
javascript
// Example: Creating an account via REST API
fetch("https://novaedgeacademy.in/api/v1/register", {
  method: "POST",
  headers: { "Content-Type": "application/json" },
  body: JSON.stringify({
    name: "Alex Johnson",
    email: "alex@example.com",
    password: "SecurePassword123!",
    username: "alexjohnson"
  })
});

2. Enroll in Your First Course

Navigate to the Explore Courses tab (/courses) and click on any course. Click Enroll Now to add the course to My Learning (/enrollments).

Was this page helpful?