Skip to content

Commit

Permalink
The Signup Page Enhancement (#231)
Browse files Browse the repository at this point in the history
<!-- 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
khushi-joshi-05 authored Oct 11, 2024
2 parents c970b35 + 06983ad commit 2fe64cf
Show file tree
Hide file tree
Showing 4 changed files with 460 additions and 109 deletions.
201 changes: 201 additions & 0 deletions community.html
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>&copy; 2024 Waste Management. All rights reserved.</p>
</footer>

<script src="script.js"></script>

</body>
</html>
48 changes: 19 additions & 29 deletions index.html
Original file line number Diff line number Diff line change
Expand Up @@ -153,6 +153,11 @@ <h2>Discover Our Features</h2>
<div class="features-container">


</div>

</section>

<section class="features" id="features">
<div class="feature-card" id="eco-friendly">
<div class="icon">
<i class="fas fa-leaf"></i>
Expand All @@ -175,22 +180,16 @@ <h3>Eco-Friendly Tips</h3>
<h3>Real-time Monitoring</h3>
<p>Keep track of your waste management activities instantly, with up-to-the-minute updates.</p>
</div>

<div class="feature-card1">
<div class="icon">
<i class="fas fa-users"></i>
</div>
<h3>Community Engagement</h3>
<p>Join our community and participate in group efforts for more effective waste management and
environmental care.</p>
</div>

</div>

<div class="feature-card">
<h3>Community Engagement</h3>
<p>Join community efforts to promote effective waste management.</p>
<a href="community.html" class="hero-btn">Join Community</a>
</div>

</section>



<section class="faqs" id="faqs">

<section class="faqs" id="faqs">
Expand Down Expand Up @@ -330,16 +329,6 @@ <h4>Responsibility</h4>



<section class="signup" id="signup">
<h2>Sign Up</h2>
<form id="signup-form">
<input type="text" placeholder="Full Name" required aria-label="Full Name">
<input type="email" placeholder="Email Address" required aria-label="Email Address">
<input type="password" placeholder="Password" required aria-label="Password">
<input type="password" placeholder="Confirm Password" required aria-label="Confirm Password">
<button type="submit">Create Account</button>
</form>
</section>

</main>

Expand Down Expand Up @@ -372,13 +361,7 @@ <h3>Our Commitment to Sustainability</h3>
<box-icon type="logo" name="instagram"></box-icon>
</a>

</div>
<div class="community-message">
<h3>Our Commitment to Sustainability</h3>
<p>At Waste Management, we are dedicated to building a greener future. Through our community recycling
programs and sustainability initiatives, we strive to reduce waste and protect the environment for
generations to come. Join us in our mission to create a cleaner, healthier planet.</p>
</div>
</div>

<p>&copy; 2024 Waste Management. All rights reserved.</p>
</footer>
Expand All @@ -391,6 +374,13 @@ <h3>Our Commitment to Sustainability</h3>
<script src="script.js"></script>


</div>
<p>&copy; 2024 Waste Management. All rights reserved.</p>
</footer>

<script src="script.js"></script>


</body>

</html>
Loading

0 comments on commit 2fe64cf

Please sign in to comment.