-
Notifications
You must be signed in to change notification settings - Fork 115
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
<!-- Thank you for sending a pull request ❤️ --> ## Issues Identification Closes: #172 ## Description The sign up page looks very blind where the header contains all the links that not take to the respective pages. But now the issue is solved and the continue with google option is also added, which enhance the user friendly platform to user. Also for security the password has certain conditions like 8 words uppercase, lowercase and special characters. ### Summary The sign up page and login page looks very attractive and the user feels it very friendly ### Details 1. The header section contains many content which are removed . 2. The footer section has also been added successfully. ## Types of Changes _Please check the boxes that apply_ - [ ] Bugfix (non-breaking change that fixes an issue) - [ ] New feature (non-breaking change that adds functionality) - [ ] Breaking change (fix or feature that would cause existing functionality to not work as expected) - [ ] Documentation update (Documentation content changed) - [ ] Other (please describe): ## Checklist _Please check the boxes that apply_ - [ ] My code follows the style guidelines of this project - [ ] I have performed a self-review of my own code - [ ] I have commented my code, particularly in hard-to-understand areas - [ ] I have made corresponding changes to the documentation - [ ] My changes generate no new warnings - [ ] My changes do not break the current system and pass all existing test cases - [ ] I have added tests that prove my fix is effective or that my feature works - [ ] New and existing unit tests pass locally with my changes - [ ] Any dependent changes have been merged and published in downstream modules ## Screenshots before: ![image](https://github.com/user-attachments/assets/cebcadf0-fbd1-45d2-b065-19d73d243ce5) after: ![image](https://github.com/user-attachments/assets/5683d2f8-8704-453e-960a-ebded541aa4d) ![image](https://github.com/user-attachments/assets/67bcf366-cb80-4249-9c8e-12fe07e0df70) ![image](https://github.com/user-attachments/assets/e373d62c-7ed0-40ac-aa74-4b5bf86837da) ![image](https://github.com/user-attachments/assets/7ba4426c-5af6-47f4-ad56-6b0082cc43ac) ![image](https://github.com/user-attachments/assets/5bb0dd61-2dcd-42eb-901d-9502c5a91e55) If applicable, please attach screenshots of the changes made to the user interface. ## Additional Information If you need further any changes in the code i am ready to do it . @GarimaSingh0109 <!-- We're looking forward to merging your contribution!! -->
- Loading branch information
Showing
4 changed files
with
460 additions
and
109 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,201 @@ | ||
<!DOCTYPE html> | ||
<html lang="en"> | ||
<head> | ||
<meta charset="UTF-8"> | ||
<meta name="viewport" content="width=device-width, initial-scale=1.0"> | ||
<title>Our Team - Waste Management</title> | ||
<link rel="icon" href="./assets/logo.png"> | ||
<link rel="stylesheet" href="styles.css"> | ||
<link href="https://fonts.googleapis.com/css2?family=Poppins:wght@400&display=swap" rel="stylesheet"> | ||
<script src="https://unpkg.com/[email protected]/dist/boxicons.js"></script> | ||
<style> | ||
body { | ||
font-family: 'Poppins', sans-serif; | ||
margin: 0; | ||
padding: 0; | ||
background-color: #f4f4f4; | ||
} | ||
|
||
header { | ||
background: #00796b; | ||
color: white; | ||
padding: 1rem 0; | ||
text-align: center; | ||
} | ||
|
||
nav ul { | ||
list-style: none; | ||
padding: 0; | ||
} | ||
|
||
nav ul li { | ||
display: inline; | ||
margin: 0 15px; | ||
} | ||
|
||
nav ul li a { | ||
color: white; | ||
text-decoration: none; | ||
font-weight: bold; | ||
} | ||
|
||
.team-container { | ||
display: flex; | ||
justify-content: center; | ||
flex-wrap: wrap; | ||
padding: 20px; | ||
} | ||
|
||
.team-member { | ||
perspective: 1000px; | ||
margin: 15px; | ||
width: 250px; | ||
} | ||
|
||
.card { | ||
position: relative; | ||
width: 100%; | ||
height: 250px; | ||
transition: transform 0.6s; | ||
transform-style: preserve-3d; | ||
} | ||
|
||
.card:hover { | ||
transform: rotateY(180deg); | ||
} | ||
|
||
.card-front, | ||
.card-back { | ||
position: absolute; | ||
width: 100%; | ||
height: 100%; | ||
backface-visibility: hidden; | ||
border-radius: 8px; | ||
box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2); | ||
} | ||
|
||
.card-front { | ||
display: flex; | ||
align-items: center; | ||
justify-content: center; | ||
background-color: #ffffff; | ||
} | ||
|
||
.card-back { | ||
background-color: #4CAF50; | ||
color: white; | ||
display: flex; | ||
align-items: center; | ||
flex-direction: column; | ||
justify-content: center; | ||
transform: rotateY(180deg); | ||
text-align: center; | ||
padding: 10px; | ||
} | ||
|
||
.social-media a { | ||
color: white; | ||
margin: 5px 10px; | ||
text-decoration: none; | ||
} | ||
|
||
footer { | ||
background: #00796b; | ||
color: white; | ||
text-align: center; | ||
padding: 1rem 0; | ||
position: relative; | ||
} | ||
</style> | ||
</head> | ||
<body> | ||
|
||
<header> | ||
<h1>Waste Management</h1> | ||
<nav> | ||
<ul> | ||
<li><a href="index.html">Home</a></li> | ||
<li><a href="../WasteManagment/CARBON FOOTPRINT CALC/welcome.html">Carbon footprint</a></li> | ||
<li><a href="register.html">Sign up</a></li> | ||
|
||
<li><a href="#footer">Contact</a></li> | ||
<li class="theme-switch" id="theme-switch"></li> | ||
</ul> | ||
</nav> | ||
</header> | ||
|
||
|
||
<main> | ||
|
||
<section class="team"> | ||
|
||
<h2 style="text-align: center;">Our Dedicated Team</h2> | ||
<div class="team-container"> | ||
<div class="team-member"> | ||
<div class="card"> | ||
<div class="card-front"> | ||
<img src="https://avatars.githubusercontent.com/u/130893914?v=4" alt="Team Member 1" style="width: 100%; height: 100%; object-fit: cover; border-radius: 8px;"> | ||
</div> | ||
<div class="card-back"> | ||
<h3>Garima Singh</h3> | ||
<p>Project Manager</p> | ||
<div class="social-media"> | ||
<a href="https://www.linkedin.com/in/garima-singh-279014264" target="_blank">LinkedIn</a> | ||
<a href="https://github.com/GarimaSingh0109" target="_blank">GitHub</a> | ||
</div> | ||
</div> | ||
</div> | ||
</div> | ||
<div class="team-member"> | ||
<div class="card"> | ||
<div class="card-front"> | ||
<img src="./assets/member2.jpg" alt="Team Member 2" style="width: 100%; height: 100%; object-fit: cover; border-radius: 8px;"> | ||
</div> | ||
<div class="card-back"> | ||
<h3>Jane Smith</h3> | ||
<p>Environmental Specialist</p> | ||
<div class="social-media"> | ||
<a href="https://www.linkedin.com/in/janesmith" target="_blank">LinkedIn</a> | ||
<a href="https://github.com/janesmith" target="_blank">GitHub</a> | ||
</div> | ||
</div> | ||
</div> | ||
</div> | ||
<div class="team-member"> | ||
<div class="card"> | ||
<div class="card-front"> | ||
<img src="./assets/member3.jpg" alt="Team Member 3" style="width: 100%; height: 100%; object-fit: cover; border-radius: 8px;"> | ||
</div> | ||
<div class="card-back"> | ||
<h3>Alex Johnson</h3> | ||
<p>Community Outreach</p> | ||
<div class="social-media"> | ||
<a href="https://www.linkedin.com/in/alexjohnson" target="_blank">LinkedIn</a> | ||
<a href="https://github.com/alexjohnson" target="_blank">GitHub</a> | ||
</div> | ||
</div> | ||
</div> | ||
</div> | ||
<!-- Add more team members as needed --> | ||
</div> | ||
</section> | ||
</main> | ||
|
||
<footer id="footer"> | ||
<h2>Stay Connected</h2> | ||
<form id="newsletter-form"> | ||
<input type="email" placeholder="Your Email" required> | ||
<button type="submit">Subscribe</button> | ||
</form> | ||
<div class="social-media"> | ||
<a href="#"><box-icon type="logo" name="facebook"></box-icon> Facebook</a> | ||
<a href="#"><box-icon type="logo" name="twitter"></box-icon> Twitter</a> | ||
<a href="#"><box-icon type="logo" name="instagram"></box-icon> Instagram</a> | ||
</div> | ||
<p>© 2024 Waste Management. All rights reserved.</p> | ||
</footer> | ||
|
||
<script src="script.js"></script> | ||
|
||
</body> | ||
</html> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.