Skip to content

Commit

Permalink
webiste
Browse files Browse the repository at this point in the history
  • Loading branch information
manojmahara71 authored Feb 4, 2024
0 parents commit 4f50368
Show file tree
Hide file tree
Showing 27 changed files with 1,861 additions and 0 deletions.
Binary file added 4b9a71b38b602dfa62cc7c8e70dfffbe.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added bth.jpg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
52 changes: 52 additions & 0 deletions calendar.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,52 @@
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>CALENDAR</title>
<link rel="stylesheet" href="style1.css">
<script src="script.js" defer></script>
</head>
<body>
<div class="contianer">
<div class="calendar">
<div class="calendar-header">
<span class="month-picker" id="month-picker"> May </span>
<div class="year-picker" id="year-picker">
<span class="year-change" id="pre-year">
<pre><</pre>
</span>
<span id="year">2020 </span>
<span class="year-change" id="next-year">
<pre>></pre>
</span>
</div>
</div>

<div class="calendar-body">
<div class="calendar-week-days">
<div>Sun</div>
<div>Mon</div>
<div>Tue</div>
<div>Wed</div>
<div>Thu</div>
<div>Fri</div>
<div>Sat</div>
</div>
<div class="calendar-days">
</div>
</div>
<div class="calendar-footer">
</div>
<div class="date-time-formate">
<div class="day-text-formate">TODAY</div>
<div class="date-time-value">
<div class="time-formate">02:51:20</div>
<div class="date-formate">23 - july - 2022</div>
</div>
</div>
<div class="month-list"></div>
</div>
</div>
</body>
</html>
Binary file added fb logo.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
195 changes: 195 additions & 0 deletions fb prof.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,195 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Login and Profile Page</title>
<style>
/* General Styles */
body {
font-family: Arial, sans-serif;
margin: 0;
padding: 0;
background-color: #f0f2f5;
}

/* Login Form Styles */
.login-container {
max-width: 400px;
margin: 100px auto;
background-color: #fff;
border-radius: 8px;
padding: 20px;
box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
text-align: center;
}

.login-container h2 {
margin-bottom: 20px;
color: #333;
}

.login-form {
display: flex;
flex-direction: column;
align-items: center;
}

.login-form input {
width: 100%;
padding: 10px;
margin-bottom: 15px;
border: 1px solid #ccc;
border-radius: 5px;
box-sizing: border-box;
}

.login-form button {
width: 100%;
padding: 10px;
background-color: #4267B2;
color: #fff;
border: none;
border-radius: 5px;
cursor: pointer;
transition: background-color 0.3s;
}

.login-form button:hover {
background-color: #3b5998;
}

/* Profile Page Styles */
.profile-container {
max-width: 800px;
margin: 50px auto;
background-color: #fff;
border-radius: 8px;
padding: 20px;
box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

.profile-container h2 {
margin-bottom: 20px;
color: #333;
}

.profile-info {
display: flex;
justify-content: center;
align-items: center;
margin-bottom: 20px;
}

.profile-info img {
width: 100px;
height: 100px;
border-radius: 50%;
margin-right: 20px;
}

.profile-info p {
color: #333;
}

.profile-links {
display: flex;
justify-content: center;
margin-bottom: 20px;
}

.profile-links a {
margin: 0 10px;
color: #4267B2;
text-decoration: none;
font-weight: bold;
transition: color 0.3s;
}

.profile-links a:hover {
color: #3b5998;
}

.logout-btn {
background-color: #4267B2;
color: #fff;
padding: 10px 20px;
border: none;
border-radius: 5px;
cursor: pointer;
transition: background-color 0.3s;
}

.logout-btn:hover {
background-color: #3b5998;
}
</style>
</head>
<body>
<div class="login-container">
<h2>Login</h2>
<form class="login-form" action="#">
<input type="text" placeholder="Username" id="username">
<input type="password" placeholder="Password" id="password">
<button type="submit" onclick="login()">Login</button>
</form>
</div>

<div class="profile-container" style="display: none;">
<h2>Welcome to Your Profile</h2>
<div class="profile-info">
<img id="profile-pic" src="" alt="Profile Picture">
<p id="profile-name"></p>
</div>
<div class="profile-links">
<a href="#" id="timeline-link">Timeline</a>
<a href="#" id="photos-link">Photos</a>
<a href="calendar.html" id="Calendar-link">Calendar</a>
</div>
<button class="logout-btn" onclick="logout()">Logout</button>
</div>
<
<script>
function login() {
var username = document.getElementById("username").value;
var password = document.getElementById("password").value;

// Check if username and password are correct (dummy check)
if (username === "Manoj Mahara" && password === "manoj") {
// Show profile page and hide login form
document.querySelector(".login-container").style.display = "none";
document.querySelector(".profile-container").style.display = "block";
// Update profile info
document.getElementById("profile-name").textContent = "Manoj Mahara";
document.getElementById("profile-pic").src = "profile.jpg";
document.getElementById("timeline-link").href = "timeline1.html";
document.getElementById("photos-link").href = "photo.html";
document.getElementById("calendar-link").href = "calendar.html";

} else if (username === "Kiran Mahara" && password === "kiran") {
// Show profile page and hide login form
document.querySelector(".login-container").style.display = "none";
document.querySelector(".profile-container").style.display = "block";
// Update profile info
document.getElementById("profile-name").textContent = "Kiran Mahara";
document.getElementById("profile-pic").src = "krn.jpg";
document.getElementById("timeline-link").href = "timeline.html";
document.getElementById("photos-link").href = "photo1.html";
document.getElementById("calendar-link").href = "calendar.html";
} else {
alert("Invalid username or password. Please try again.");
}
}

function logout() {
// Show login form and hide profile page
document.querySelector(".login-container").style.display = "block";
document.querySelector(".profile-container").style.display = "none";
// Clear input fields
document.getElementById("username").value = "";
document.getElementById("password").value = "";
}
</script>
>
</body>
</html>
Binary file added in.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added inista.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added krn.jpg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added krn1.jpg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added krn2.jpg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
86 changes: 86 additions & 0 deletions login.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,86 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Facebook Login</title>
<style>
body {
font-family: Arial, sans-serif;
background-color: #f0f2f5;
margin: 0;
padding: 0;
}

.container {
display: flex;
justify-content: center;
align-items: center;
height: 100vh;
}

.login-container {
background-color: #fff;
border-radius: 8px;
padding: 20px;
box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
text-align: center;
}

.facebook-logo {
width: 120px;
margin-bottom: 20px;
}

.form-group {
margin-bottom: 20px;
}

.form-group input {
width: 100%;
padding: 10px;
border: 1px solid #ddd;
border-radius: 5px;
box-sizing: border-box;
}

.login-btn {
width: 100%;
padding: 10px;
background-color: #1877f2;
color: #fff;
border: none;
border-radius: 5px;
cursor: pointer;
transition: background-color 0.3s;
}

.login-btn:hover {
background-color: #166fe5;
}

.signup-link {
color: #1877f2;
text-decoration: none;
}
</style>
</head>
<body>
<div class="container">
<div class="login-container">
<img class="facebook-logo" src="https://upload.wikimedia.org/wikipedia/commons/5/51/Facebook_f_logo_%282019%29.svg" alt="Facebook Logo">
<div class="form-group">
<input type="text" placeholder="Email or Phone">
</div>
<div class="form-group">
<input type="password" placeholder="Password">
</div>
<button class="login-btn">Log In</button>
<div>
<a class="signup-link" href="#">Create New Account</a>
</div>
</div>
</div>

</body>
</html>
Binary file added logo.webp
Binary file not shown.
Binary file added logo2.webp
Binary file not shown.
Binary file added manoj.jpg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added manoj1.jpg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added manoj2.jpg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading

0 comments on commit 4f50368

Please sign in to comment.