-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #44 from erland-syafiq/register-success
Register Success Page
- Loading branch information
Showing
5 changed files
with
75 additions
and
8 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
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,48 @@ | ||
.registerSuccess { | ||
text-align: center; | ||
} | ||
|
||
.registerSuccess h2 { | ||
color: var(--primary); | ||
padding: 10px; | ||
} | ||
|
||
.registerSuccess h5 { | ||
padding: 10px; | ||
} | ||
|
||
.registerCard { | ||
padding: 20px; | ||
margin-bottom: 40px; | ||
margin-right: 10px; | ||
margin-left: 10px; | ||
border: solid var(--primary); | ||
background: var(--primary-background); | ||
box-shadow: -8px 12px 0px 0px var(--tertiary); | ||
margin-top: 100px; | ||
margin-bottom: 100px; | ||
} | ||
|
||
.registerImg { | ||
height: 250px; | ||
width: 100%; | ||
object-fit: cover; | ||
background-position: center; | ||
margin-bottom: 20px; | ||
/* box-shadow: 0 6px 8px rgba(0, 0, 0, 0.3); */ | ||
} | ||
|
||
/** | ||
Unlike home page this background is fixed and static in background | ||
**/ | ||
.registerSuccessBackground { | ||
position: fixed; | ||
top: 0px; | ||
left: 0px; | ||
background-repeat: no-repeat; | ||
background-image: url(/Images/registersuccess.jpeg); | ||
background-size: cover; | ||
height: 100%; | ||
width: 100%; | ||
z-index: -1; | ||
} |
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 |
---|---|---|
@@ -1,11 +1,29 @@ | ||
import React from 'react'; | ||
import './RegisterSuccess.css'; | ||
|
||
export default function RegisterSuccess() { | ||
return ( | ||
<main class="Container"> | ||
<h1>Thank you for registering for VTMUNC!</h1> | ||
<p> | ||
We will begin processing your data as soon as possible. | ||
</p> | ||
</main> | ||
<main className="container"> | ||
<div className='registerSuccess'> | ||
<div className='row'> | ||
<div className='col-md-3'></div> | ||
<div className='col-md-6'> | ||
<div className='registerCard'> | ||
<div className='row'> | ||
<h2>Thank you for registering for VTMUNC!</h2> | ||
</div> | ||
|
||
<div> | ||
<img className="registerImg" src={"/Images/AboutUsGroupPhoto.jpg"} /> | ||
</div> | ||
|
||
<h5>We will begin processing your data as soon as possible. Please reach out to chargedaffaires@vtmunc.org if you have any more questions.</h5> | ||
</div> | ||
</div> | ||
<div className='col-md-3'></div> | ||
</div> | ||
</div> | ||
<div className="registerSuccessBackground"></div> | ||
</main> | ||
) | ||
} |
File renamed without changes
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.