Skip to content

Commit

Permalink
registration page
Browse files Browse the repository at this point in the history
  • Loading branch information
Manavsheth78 committed Feb 14, 2023
1 parent 4d7ac46 commit 4cdc1b2
Show file tree
Hide file tree
Showing 5 changed files with 231 additions and 0 deletions.
2 changes: 2 additions & 0 deletions src/App.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,7 @@ import Sponsor from "./components/Sponsor/Sponsor";
import { NavBar } from "./components/Nav/NavBar";
import Glimpse from "./components/Glimpse/Glimpse";
import Signup from "./components/Signup/Signup";
import Registration from "./components/registration/registration";
import { render } from "@testing-library/react";
const App = () => {

Expand All @@ -24,6 +25,7 @@ const App = () => {
{/* <Sponsor /> */}
<Glimpse />
<Signup/>
<Registration/>
<Footer />
</div>
);
Expand Down
63 changes: 63 additions & 0 deletions src/assets/regisbg.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added src/assets/registrationbg.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
90 changes: 90 additions & 0 deletions src/components/registration/registration.css
Original file line number Diff line number Diff line change
@@ -0,0 +1,90 @@
.registration{
background: url('../../assets/bgprakarsh.png');
height: fit-content;
/* width: max-content; */
background-size: contain;
background-repeat: no-repeat;

/* flex-wrap: wrap; */
/* flex-direction: column; */

}

.rhead h1{
font-size: 3rem;
font-family: 'valorant';
display: flex;
justify-content: center;
align-items: center;
background: linear-gradient( 180deg,rgba(128, 128, 128) 1.25%, rgba(128, 128, 128)1.26%, rgba(255, 255, 255) 1.27%, rgba(255,255,255,0.4) 69.7%);
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;
background-clip: text;
letter-spacing: 10px;

}
.rcontent{
padding: 20px;
margin: 50px;
display: grid;
grid-template-columns: 1fr ;
/* grid-auto-rows: 300px; */

}

.first{
display: grid;
grid-template-columns: 1fr 1fr;
}

.second{
display: grid;
grid-template-columns: 1fr ;
justify-self: center;
grid-column-start: 1;

}

.try{
display: flex;
justify-content: center;
flex-direction: column;
/* gap: 1px; */
}

.pad{
margin: 20px;
}
.try-2{

display: grid;
grid-template-columns: 1fr 1fr;
}
.r-rect{
width: 500px;
height: 50px;
border: solid rgb(1, 209, 105);
border-radius: 5px;
position: relative;
background-color: #1d2a2e;
bottom: 58px;
z-index: 0;
right: 11px;
}


/* .inputbox input{
width: 100%;
padding: 10px;
height: 52px;
border: 3px solid rgba(106, 15, 233); ;
border-radius: 5px;
background-color: transparent;
outline: none;
color: #fff;
font-size: 1.4em;
position: relative;
bottom: 118px;
right: 21px;
} */
76 changes: 76 additions & 0 deletions src/components/registration/registration.jsx
Original file line number Diff line number Diff line change
@@ -0,0 +1,76 @@
import React from 'react'
import './registration.css'

const registration = () => {
return (

<div className="registration">

<div className="rhead">
<h1> Registration </h1>
</div>




<div className="rcontent">
<div className="first">

<div className="inputbox ">
<div className="rect" />
<input type="text" placeholder=' First name' required="required" />
</div>

<div className="inputbox">
<div className="rect" />
<input type="text" placeholder=' Last name' required="required" />
</div>
</div>
<div className="second">

<div className="try">

<div className="inputbox pad ">
<div className="rect" />
<input type="email" placeholder=' email' required="required" />
</div>

<div className="inputbox pad">
<div className="rect" />
<input type="text" placeholder=' phone Number' required="required" />
</div>

<div className="inputbox pad">
<div className="rect" />
<input type="text" placeholder=' College name' required="required" />
</div>

</div>
</div>

<div className="third">

<div className="try-2">
<div className="inputbox pad ">
<div className="rect" />
<input type="text" placeholder=' Department' required="required" />
</div>

<div className="inputbox pad">
<div className="rect" />
<input type="text" placeholder='YEAR' required="required" />
</div>
</div>

</div>




</div>

</div>
)
}

export default registration

0 comments on commit 4cdc1b2

Please sign in to comment.