From 70f3894ee6ac3ffe4d1e17a832850410ba480330 Mon Sep 17 00:00:00 2001 From: Tasnuva12 Date: Sun, 26 May 2024 16:30:55 +0600 Subject: [PATCH 1/4] Added new Login Page and Registration page path I modified the existing page's code and added new login and registration page --- index.html | 2 +- loginPage.css | 161 ++++++++++++++++++++++++ loginPage.html | 35 ++++++ registerPage.css | 314 ++++++++++++++++++++++++++++++++++++++++++++++ registerPage.html | 87 +++++++++++++ 5 files changed, 598 insertions(+), 1 deletion(-) create mode 100644 loginPage.css create mode 100644 loginPage.html create mode 100644 registerPage.css create mode 100644 registerPage.html diff --git a/index.html b/index.html index 08f48172..de860139 100644 --- a/index.html +++ b/index.html @@ -115,7 +115,7 @@

TourGuide . . .

-
diff --git a/loginPage.css b/loginPage.css new file mode 100644 index 00000000..2869feba --- /dev/null +++ b/loginPage.css @@ -0,0 +1,161 @@ +@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@400;600;800&display=swap"); +@import url("https://fonts.googleapis.com/css2?family=Open+Sans:ital,wght@0,300..800;1,300..800&family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&display=swap"); + +* { + margin: 0; + padding: 0; + box-sizing: border-box; + font-family: "Roboto", sans-serif; + font-weight: 500; + font-style: normal; +} +.main-container { + min-height: 100vh; + min-width: 100vw; + background-image: url("./img/img1.jpeg"); + background-position: center; + background-size: cover; + background-repeat: no-repeat; + display: flex; + justify-content: center; + align-items: center; +} + +.form-container { + display: flex; + gap: 2rem; + justify-content: center; + align-items: center; + color: white; + backdrop-filter: blur(8px); + padding: 2rem 1rem; + background-color: rgba(44, 57, 104, 0.2); + border-radius: 20px; +} +.content { + display: flex; + flex-direction: column; + gap: 2rem; + justify-content: center; + align-items: center; + padding: 2rem 0; + font-weight: 600; + flex-wrap: wrap; +} + +.content h1 { + font-weight: 700; + font-size: 3rem; + text-shadow: 0px 0px 20px #010618, 0px 0px 40px #010618; + text-align: center; + position: relative; +} +.content p { + width: 100%; + font-size: 1.5rem; + color: white; + opacity: 1; + font-weight: 600; + text-shadow: 0px 0px 20px #010618, 0px 0px 40px #010618; + text-align: center; +} +text{ + color:aquamarine +} +.register-link { + font-weight: bold; + color: white; + text-decoration: none; + transition: color 0.2s ease-in-out; +} + +.register-link:hover { + color: #f39c12; /* Change to your desired hover color */ +} +.passForget{ + color: rgb(234, 35, 35); + font-weight: bold; + + +} + +.content button { + font-size: 1.5rem; + padding: 1rem 2rem; + border-radius: 0.5rem; + border: none; + background: linear-gradient( + 109.6deg, + rgb(5, 85, 84) 11.2%, + rgb(64, 224, 208) 91.1% + ); + color: white; + font-weight: 700; + box-shadow: 0px 0px 10px rgb(10, 64, 88); + transition: all 0.2s ease-in-out; + letter-spacing: 1.1px; +} + +.content button:hover { + transform: scale(1.02); + box-shadow: 0px 0px 10px rgb(10, 64, 88), 0px 0px 20px rgb(10, 64, 88), + 0px 0px 30px rgb(10, 64, 88); + transition: all 0.2s ease-in-out; +} +form { + display: flex; + flex-direction: column; + justify-content: center; + align-items: center; + gap: 1rem; +} + +form > input { + font-size: 1.3rem; + padding: 0.5rem 0.5rem; + width: 20rem; + background: transparent; + border: 2px solid white; + border-radius: 6px; + color: white; + transition: outline 0.2s ease-in-out; + outline: none; +} + +form > input::placeholder { + color: white; +} + +form > input:focus { + outline: 3px solid #010618; + transition: outline 0.2s ease-in-out; + border: none; +} + +@media screen and (max-width: 815px) { + .form-container { + flex-direction: column; + } + + .content { + box-shadow: 0px 0px 20px #010618, 0px 0px 40px #010618; + padding: 2rem 0rem; + border-radius: 10px; + } +} + +@media screen and (max-width: 510px) { + .content h1 { + font-size: 2rem; + } + + .content p { + width: 50%; + } +} +form>input { + font-size: 1rem; + padding: 0.5rem 0.5rem; + width: 14rem; + background: transparent; + } diff --git a/loginPage.html b/loginPage.html new file mode 100644 index 00000000..c2bdb1d7 --- /dev/null +++ b/loginPage.html @@ -0,0 +1,35 @@ + + + + + + + Login Page + + + + + +
+
+
+

Welcome Back !

+

Login with your personal information.

+
+ + + +
+
Forgot your password?
+ Don't have an account? Please Register here. +
+
+
+ +
+ + \ No newline at end of file diff --git a/registerPage.css b/registerPage.css new file mode 100644 index 00000000..3d43ee60 --- /dev/null +++ b/registerPage.css @@ -0,0 +1,314 @@ +@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@400;600;800&display=swap"); +*{ + margin: 0; + padding: 0; + box-sizing: border-box; + font-family:'Urbanist', sans-serif; +} +:root{ + --var-primary-color: #2888E8FF +} +html{ + font-size:62.5%; + +} +h1,h2,h3,h4{ + font-family:'Lexend Deca', sans-serif; +} +h1{ + font-size:4.8rem; +} +h2{ + font-size:3rem; +} +p{ + font-size: 1.6rem; + letter-spacing: 0.08rem; +} +button, input[type="submit"]{ + border: .1rem solid #fff; + outline: none; + padding: .6rem 1.2rem; + font-size: 1.7rem; + text-transform: capitalize; + letter-spacing: 0.01rem; + background-color: transparent; + color: #fff; + cursor: pointer; +} + +.registration-header{ + height: 100vh; + background-image:linear-gradient(rgba(0,0,0,0.5),rgba(0,0,0,0.5)),url("img/img1.jpeg"); + background-repeat: no-repeat; + background-size: cover; + background-position: center; +} +.container{ + height:10vh; + width: 80%; + margin:auto; + display: flex; + justify-content: space-between; + align-items: center; + +} +.logo a{ + font-size: 2.4rem; + font-weight: bold; + color: #fff; + text-decoration: none; +} + +main{ + min-height: 80vh; + display: flex; + justify-content: center; + align-items: center; +} +.registration, .login{ + min-height: 30rem; + min-width: 40vw; + /* + + + + Registration Page + + + + + + + +
+ + + + +
+
+
+ +
+
+ + + + From a69a0b9ce0b08820ecf95e800b48a853e8b7b572 Mon Sep 17 00:00:00 2001 From: nagalakshmi08 Date: Mon, 27 May 2024 15:22:57 +0530 Subject: [PATCH 2/4] Fix: Made header responsive. --- styles.css | 74 +++++++++++++++++++++++++++++++++++++++++++++++++++++- 1 file changed, 73 insertions(+), 1 deletion(-) diff --git a/styles.css b/styles.css index 559a1b24..9620c974 100644 --- a/styles.css +++ b/styles.css @@ -2083,4 +2083,76 @@ margin-left: 20px; .swiper-container-3d .swiper-slide-shadow-left { background-image: none; -} \ No newline at end of file +} + + + +/* CSS for small devices */ +@media (max-width: 1200px) { + .header__image img:nth-child(1) { + max-width: 30vw; + transform: translate(-75%, -50%); + } + + .header__image img:nth-child(2) { + max-width: 20vw; + transform: translate(0%, -25%); + } +} + +@media (max-width: 1000px) { + .nav__links { + display: none; + } + + .header__container { + grid-template-columns: repeat(1, 1fr); + padding: 0 1rem; /* Adjust padding for smaller devices */ + } + + .header__image { + /* Remove minimum height for smaller devices */ + padding-top: 20px; /* Add padding to center content vertically */ + } + + .header__image img:nth-child(1) { + max-width: 60vw; /* Adjust image size for smaller devices */ + transform: translate(-90%, -40%); /* Center image horizontally and vertically */ + } + + .header__image img:nth-child(2) { + max-width: 30vw; /* Adjust image size for smaller devices */ + transform: translate(-30%, -75%); /* Center image vertically */ + } + + .header__content {/* Adjust padding for smaller devices */ + padding-top: 0; + text-align: center; /* Center align text */ + } + + .header__content h1 { + font-size: 1rem; /* Adjust font size for smaller devices */ + line-height: 1rem; /* Adjust line height for smaller devices */ + width: auto; /* Remove fixed width */ + height: auto; /* Remove fixed height */ + } + .header__content p + { + padding: 10px; + font-size: 1rem; + } + + .header__content .action__btns { + flex-direction: column; /* Stack buttons vertically */ + gap: 1rem; /* Add gap between buttons */ + margin-top: 1rem; /* Adjust top margin */ + } + + .section__subtitle { + font-size: 0.7rem; /* Adjust font size for smaller devices */ + padding: 0 10px; /* Add vertical padding */ + text-align: center; /* Center align text */ + max-width: 30%; /* Limit width to prevent overflow */ + margin: 0 auto; /* Center the subtitle */ + } +} From 7bfb7b74994c383d531a1de96130cc6d3721edd9 Mon Sep 17 00:00:00 2001 From: Sadaf <137484958+SadafKausar2025@users.noreply.github.com> Date: Sat, 1 Jun 2024 13:25:48 +0530 Subject: [PATCH 3/4] FeedBack Page and Login Page fixed --- feedback.html | 90 +++++-------- login.html | 3 +- newLogin.html | 319 +++++++++++++++++++++++++++---------------- style_.css | 179 +++++------------------- styles.css | 367 ++++++++++++++++++++++---------------------------- 5 files changed, 431 insertions(+), 527 deletions(-) diff --git a/feedback.html b/feedback.html index 0e105a31..00c706a1 100644 --- a/feedback.html +++ b/feedback.html @@ -1,5 +1,4 @@ - @@ -9,92 +8,70 @@ href="img/A T logo with a white background and a square shape, connected to nature for a travel company.png" type="image/x-icon" /> - - - - - + - - + + - + +
- +

RATE OUR SERVICE

- - -

How easy was it to navigate through the website?

-

How much straightforward and easy was the booking process

Rating: 0

-

Did the payment options meet your needs? Were you comfortable with the security measures in place?

Rating: 0

-

How responsive and helpful was the customer support team?

Rating: 0

-

How much would you recommend this travel website to others?

Rating: 0

-

If you've taken a package tour from this website, how was the overall experience?

Rating: 0

-
-

@@ -103,12 +80,9 @@

RATE OUR SERVICE

-
- - \ No newline at end of file diff --git a/login.html b/login.html index 243d1993..bf0d5f4d 100644 --- a/login.html +++ b/login.html @@ -8,11 +8,12 @@ + - + diff --git a/newLogin.html b/newLogin.html index e4a1940b..c285fbad 100644 --- a/newLogin.html +++ b/newLogin.html @@ -1,41 +1,76 @@ - - - - + + + Login Page - - - - - - + + + + + + -