Skip to content

Commit

Permalink
login/signup configured
Browse files Browse the repository at this point in the history
  • Loading branch information
kaloa2025 committed May 28, 2024
1 parent caf39aa commit e81eb10
Show file tree
Hide file tree
Showing 5 changed files with 48 additions and 36 deletions.
12 changes: 5 additions & 7 deletions src/App.js
Original file line number Diff line number Diff line change
Expand Up @@ -5,8 +5,8 @@ import EditProfile from './components/screens/EditProfile';
import QuizReport from './components/screens/QuizReport';
import CourseScreen from './components/screens/CourseScreen';
import SuggestionForm from './components/screens/SuggestionForm';
import Signup from './components/LoginSignup/Signup';
import Login from './components/LoginSignup/Login';
import Login from './components/screens/Login';
import Signup from './components/screens/Signup';

function App() {
return (
Expand All @@ -16,11 +16,9 @@ function App() {
{/* <EditProfile/> */}
{/* <QuizReport/> */}
{/* <CourseScreen/> */}
{/* <SuggestionForm/> */}
<Signup />
<Login />


<SuggestionForm/>
{/* <Login/> */}
{/* <Signup/> */}
</div>

);
Expand Down
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
import React from 'react'
import './LoginSignup.css'
import '../../styles/loginsignup.css'

const Login = () => {
return(
Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,5 @@
import React from 'react';

import './LoginSignup.css'
import '../../styles/loginsignup.css'

const Signup = () => {
return(
Expand Down
Original file line number Diff line number Diff line change
@@ -1,76 +1,86 @@
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@100;200;400;500;700;900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Hammersmith+One&family=Inter:wght@100;200;400;500;700;900&display=swap');

.container{
display: flex;
flex-direction: column;
margin: auto;
margin-top: 250px;
background: white;
padding-bottom: 30px;
width: 400px;

align-items: center;
align-content: center;
}

.header{
display: flex;
flex-direction: column;
align-items: center;
gap: 4px;
width: 100%;
margin-top: 30px;

margin-top: 20%;
font-family: Inter,'sans-serif';
font-size: larger;
}

.heading1{
color:black;
font-size: 24;
font-family: 'Inter';
font-weight: 600;
font-family: Inter,'sans-serif';
font-weight: 500;
margin-bottom: 1%;
}

.heading2{
color: black;
font-size: 16;
font-family: 'Inter';
font-style: normal;
font-family: Inter,'sans-serif';
font-weight: 200;
font-size: 12px;
margin-bottom: 1%;
}


.inputs{
margin-top: 15px;
display: flex;
flex-direction: column;
gap: 8px;
font-family: Inter,'sans-serif';
font-weight: 500;
font-size: small;
}

.input{
display:flex;
align-items: center;
margin: auto;
width: 400px;
height: 40px;
height: 38px;
background: white;
border: 2px solid #E0E0E0;
border-radius: 6px;

border-radius: 6px;
}


.input input{
height: 40px;
height: 38px;
width: 400px;
background: transparent;
border:none;
outline: none;
color: #828282;
font-size: 20px;

font-family: Inter,'sans-serif';
font-weight: 500;
font-size: small;
margin-left: 3%;
}

.termscond{
margin-top: 15px;
color: #828282;
font-family: 'Inter';
font-size: 16px;
font-style: normal;
font-family: Inter,'sans-serif';
font-weight: 500;
font-size: 80%;
text-align: center;
}

.termscond span{
Expand All @@ -82,7 +92,7 @@
display: flex;
flex-direction: column;
gap: 6px;
margin-top: 15px;
margin-top: 3%;
}

.submit1{
Expand All @@ -94,12 +104,16 @@
color: black;
background: #24ff00;
border-radius: 8px;
font-family: 'Inter';
font-weight: 700;
font-family: Inter,'sans-serif';
font-weight: 500;
font-size: small;
cursor: pointer;
}

.submit1:hover{
box-shadow: 0px 4px 5px rgba(128, 128, 128, 0.591);
}
.submit2{
margin-top: 1%;
display: flex;
justify-content: center;
align-items: center;
Expand All @@ -108,8 +122,9 @@
color: white;
background: #454545;
border-radius: 8px;
font-family: 'Inter';
font-weight: 700;
font-family: Inter,'sans-serif';
font-weight: 500;
font-size: small;
cursor: pointer;

}
2 changes: 1 addition & 1 deletion src/styles/newsuggestionform.css
Original file line number Diff line number Diff line change
Expand Up @@ -4,4 +4,4 @@
.form-container{
width: 100%;
background-color: #454545;
}
}

0 comments on commit e81eb10

Please sign in to comment.