-
-
Notifications
You must be signed in to change notification settings - Fork 14
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
add sign in page #201
Closed
Closed
add sign in page #201
Conversation
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
iibarbari
force-pushed
the
add-sign-in-page
branch
2 times, most recently
from
November 7, 2024 19:23
daef60c
to
09190d0
Compare
iibarbari
force-pushed
the
add-sign-in-page
branch
from
November 7, 2024 22:41
e0f0087
to
81f0fec
Compare
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
This pull request introduces several new components and updates to the existing structure of the frontend application. The most important changes include the addition of
SignIn
andSignUp
components, the creation of a newAuthenticationHeader
component, and updates to theBootstrap
component to use the newAuthenticationHeader
. Additionally, there are several CSS updates to support the new components and layouts.New Components:
frontend/src/components/SignIn/index.tsx
: Added a newSignIn
component to handle user sign-in functionality.frontend/src/components/SignUp/index.tsx
: Added a newSignUp
component to handle user sign-up functionality.frontend/src/components/AuthenticationHeader/index.tsx
: Created a newAuthenticationHeader
component for consistent authentication-related headers.Component Updates:
frontend/src/components/Bootstrap/index.tsx
: Updated theBootstrap
component to use the newAuthenticationHeader
component and added routes forSignIn
andSignUp
. [1] [2]frontend/src/components/App/index.tsx
: Added routes for the newSignIn
,SignUp
, andSites
components.CSS Updates:
frontend/src/components/AuthenticationHeader/AuthenticationHeader.module.css
: Added new styles for theAuthenticationHeader
component.frontend/src/components/SignIn/SignIn.module.css
: Added new styles for theSignIn
component.frontend/src/components/SignUp/SignUp.module.css
: Added new styles for theSignUp
component.frontend/src/components/Header/Header.module.css
: Updated styles to support the new authentication links and improved layout. [1] [2] [3]