Skip to content

Commit

Permalink
Add files via upload
Browse files Browse the repository at this point in the history
  • Loading branch information
manvitha984 authored Jan 27, 2024
1 parent ed2e2c9 commit 064893e
Show file tree
Hide file tree
Showing 46 changed files with 4,266 additions and 0 deletions.
19 changes: 19 additions & 0 deletions - login, logout, profile .txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
- login, logout, profile **
- points **
- badges **
- leaderboard **
- community discussion
- languages: levels
- live contests
- learning model with concepts n questions
- streak, lives
- learning styles (***)
- track progress: live graph **
- daily puzzle section


to do:
- 1 concept page
- 1 game code playground

- axios, google auth, figma (learning path), admin control, quotes for ppl with less rank,
27 changes: 27 additions & 0 deletions admin-dashboard.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,27 @@
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Document</title>
</head>

<body>
<p>Welcome admin</p>
<style>
body{
background: url('https://i.redd.it/1omoaf91vm8b1.png') no-repeat center center fixed;
}
p{
text-align: center;
position: absolute;
top: 50%;
left: 50%;
transform: translate(-50%, -50%);
z-index:-1;
color:#fff;
font-size:50px;
}

</style>
</body>
</html>
128 changes: 128 additions & 0 deletions afterlogin.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,128 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>University Website Design</title>
<link rel="stylesheet" href="style.css">
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Press+Start+2P&display=swap" rel="stylesheet">
<link rel="stylesheet" href="https://fonts.googleapis.com/css2?family=Press+Start+2P&display=swap">

<link href="https://fonts.googleapis.com/css2?family=Poppins:wght@100;200;300;400;600;700&display=swap" rel="stylesheet">
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/@fortawesome/[email protected]/css/all.min.css">
</head>
<body>
<section class="header">
<nav>
<a href="index.html"></a>
<div class="nav-links" id="navLinks">
<i class="fa fa-times" onclick="hidemenu()"></i>
<ul>
<li><a href="index.html">HOME</a></li>
<!-- <li><a href="about.html">ABOUT</a></li> -->
<li><a href="courseoff.html">COURSES OFFERED</a></li>
<!-- <li><a href="">LOGIN</a></li>
<li><a href="">SIGNUP</a></li> -->
<li><a href="register.html">REGISTER</a></li>
<li><a href="">COMMUNITY</a></li>
<li><a href="">PUZZZLES</a></li>

<li><a href=""></a></li>
<li><a href="">LOGIN</a></li>
<li><a href="">PROFILE</a></li>


</ul>
</div>
<i class="fa fa-bars" onclick="showMenu()"></i>
</nav>
<div class="text-box">
<h1>World's Biggest University</h1>
<p>Making a website is now one of the easiest things in the world. You just need to learn HTML, CSS, <br>JavaScript and you are good to go.</p>
<a href="" class="hero-btn">register to start your learning
</a>
</div>
</section>

<section class="course">
<h1>Languages</h1>
<p>One of the best platforms to kickstart your coding skills.</p>

<div class="row">
<div class="course-col">
<h3>C</h3>
<p>Welcome to the world of C programming, where simplicity meets power! C is a versatile and foundational programming language that has stood the test of time. Developed in the early 1970s, C has been the language of choice for building operating systems, embedded systems, game development, and more.</p>
</div>
<div class="course-col">
<h3>C++</h3>
<p>In this course, you'll dive into the world of C++ and explore its syntax, object-oriented principles, and advanced features. Whether you're a novice eager to grasp the fundamentals or an experienced developer aiming to enhance your skills, C++ opens the door to limitless possibilities in the realm of programming.</p>
</div>
<div class="course-col">
<h3>Python</h3>
<p>In this course, you'll delve into the fundamentals of Python, mastering its syntax and exploring its vast ecosystem of libraries and frameworks. From building web applications to creating intelligent algorithms, Python empowers you to turn your ideas into reality.</p>
</div>
</div>
</section>





<section class="testimonials">
<h1>What our students say</h1>
<br>
<div class="row">
<div class="testimonial-col">
<img src="user1.jpg">
<div>
<p>very good experience learnt lot of new things,would recommend this platorm to learn new skills if you are a beginner</p>
<h3>Christine Berkley</h3>
</div>
</div>
<div class="testimonial-col">
<img src="user2.jpg">
<div>
<p>best platform to kickstart your coding skills,the gaming style this platform is the main attention seeker</p>
<h3>David Byer</h3>
</div>
</div>
</div>
</section>

<section class="cta">
<h1>Enroll in our various online courses<br>from anywhere in the world</h1>
<a href="" class="hero-btn">Contact us</a>
</section>

<section class="footer">
<h4>About Us</h4>
<div class="icons">
<i class="fab fa-facebook"></i>
<i class="fab fa-twitter"></i>
<i class="fab fa-instagram"></i>
<i class="fab fa-linkedin"></i>
</div>
<!-- <p>Made with <i class="fa fa-heart-o"></i> </p> -->
</section>

<!-- <button id="toggleModeBtn" onclick="toggleMode()">Toggle Mode</button> -->

<script>
var navlinks = document.getElementById("navLinks");

function showMenu() {
navlinks.style.right = "0";
}

function hidemenu() {
navlinks.style.right = "-200px";
}

function toggleMode() {
document.body.classList.toggle('dark-mode');
}
</script>
</body>
</html>
29 changes: 29 additions & 0 deletions auth.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,29 @@
// auth.js

// Simulated user data (replace this with your actual user data from a database)
const users = [
{ username: 'man', password: '123', role: 'admin' },
{ username: 'hi', password: '23', role: 'user' },
];

let currentUser = null;

function loginUser(username, password) {
const user = users.find((u) => u.username === username && u.password === password);

if (user) {
currentUser = user;
return true;
}

return false;
}

function getCurrentUser() {
return currentUser;
}

function logoutUser() {
currentUser = null;
}

6 changes: 6 additions & 0 deletions capp.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
function goToStep(step) {
const steps = document.querySelectorAll('.path-step');
steps.forEach((s, index) => {
s.style.display = index + 1 === step ? 'block' : 'none';
});
}
74 changes: 74 additions & 0 deletions ccourse.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,74 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>C Programming</title>
<link rel="stylesheet" href="cstyle.css">
<link href="https://fonts.googleapis.com/css2?family=Press+Start+2P&display=swap" rel="stylesheet">
</head>
<body>

<header class="head">
<nav>
<div class="nav-links" id="navLinks">
<i class="fa fa-times" onclick="hidemenu()"></i>
<ul>
<li><a href="index.html">HOME</a></li>
<!-- <li><a href="about.html">ABOUT</a></li> -->

<li><a href="comm.html">COMMUNITY</a></li>
<li><a href="puzzle.html">PUZZLES</a></li>
<li><a href="courseoff.html">COURSES OFFERED</a></li>
<!-- <li><a href="">LOGIN</a></li>
<li><a href="">SIGNUP</a></li> -->
<!-- <li><a href="">LOGOUT</a></li> -->
<li><a href="">PROFILE</a></li>
<li><a href="puzzle.html">PUZZLES</a></li>


</ul>
</div>
</nav>
</header>
<h1 class="c">Learn C</h1>
<section class="learning-path">
<div class="path-step" id="step1">
<h2><a href="chello.html">Step 1: Introduction to C Programming</a></h2>
<p>Learn the basics of C programming language, its history, and its significance.</p>
<br><br>
<button class="next-step" onclick="goToStep(2)">Next Step</button>
</div>

<div class="path-step" id="step2">
<h2>Step 2: Setting Up Your Development Environment</h2>
<p>Configure and set up the tools needed for C programming, including IDEs and compilers.</p>
<br><br>
<button class="prev-step" onclick="goToStep(1)">Previous Step</button>
<button class="next-step" onclick="goToStep(3)">Next Step</button>
</div>

<div class="path-step" id="step3">
<h2><a href="cprog.html">Step 3: I/O</a></h2>
<p>Learn input and output formatted functions in C programming.</p>
<br><br>
<button class="prev-step" onclick="goToStep(2)">Previous Step</button>
<button class="next-step" onclick="goToStep(4)">Next Step</button>
</div>

<div class="path-step" id="step4">
<h2>Step 4: Variables and Data Types</h2>
<p>Understand how to declare variables and work with different data types in C.</p>
<br><br>
<button class="prev-step" onclick="goToStep(3)">Previous Step</button>
<!-- Add more steps as needed -->
</div>
</section>

<footer>
<p>&copy; 2023 Your LMS. All rights reserved.</p>
</footer>

<script src="capp.js"></script>
</body>
</html>
Loading

0 comments on commit 064893e

Please sign in to comment.