forked from DarshilTheCoder/Prakarsh-23
-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
4d7ac46
commit 4cdc1b2
Showing
5 changed files
with
231 additions
and
0 deletions.
There are no files selected for viewing
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
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
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
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; | ||
} */ |
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
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 |