-
Notifications
You must be signed in to change notification settings - Fork 4
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Implemented Accept/Reject Functions for RSVP Modals (#283)
* Added profile page and accepted page updates * Implemented accept/reject modal logic; integrated with API --------- Co-authored-by: J164 <[email protected]>
- Loading branch information
1 parent
b22aa4c
commit f5be26d
Showing
3 changed files
with
72 additions
and
27 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 |
---|---|---|
|
@@ -3,17 +3,21 @@ import styles from "./styles.module.scss"; | |
export function Rejected() { | ||
return ( | ||
<div className={styles.container}> | ||
<b> | ||
Unfortunately, we were unable to offer you a spot at | ||
HackIllinois | ||
</b> | ||
<b> | ||
Email us at{" "} | ||
<a href="mailto:[email protected]"> | ||
[email protected] | ||
</a>{" "} | ||
if you have any questions! | ||
</b> | ||
<p> | ||
<b> | ||
Unfortunately, we were unable to offer you a spot at | ||
HackIllinois | ||
</b> | ||
</p> | ||
<p> | ||
<b> | ||
Email us at{" "} | ||
<a href="mailto:[email protected]"> | ||
[email protected] | ||
</a>{" "} | ||
if you have any questions! | ||
</b> | ||
</p> | ||
</div> | ||
); | ||
} | ||
|
@@ -22,17 +26,21 @@ export function Rejected() { | |
export function Waitlisted() { | ||
return ( | ||
<div className={styles.container}> | ||
<b> | ||
Unfortunately, we have deferred your application decision at | ||
this time. | ||
</b> | ||
<b> | ||
Email us at{" "} | ||
<a href="mailto:[email protected]"> | ||
[email protected] | ||
</a>{" "} | ||
if you have any questions! | ||
</b> | ||
<p> | ||
<b> | ||
Unfortunately, we have deferred your application at this | ||
time | ||
</b> | ||
</p> | ||
<p> | ||
<b> | ||
Email us at{" "} | ||
<a href="mailto:[email protected]"> | ||
[email protected] | ||
</a>{" "} | ||
if you have any questions! | ||
</b> | ||
</p> | ||
</div> | ||
); | ||
} |
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,12 @@ | ||
.buttonGroup { | ||
width: 100%; | ||
display: flex; | ||
margin-top: 15px; | ||
justify-content: center; | ||
align-items: center; | ||
gap: 5px; | ||
} | ||
|
||
.container { | ||
color: black; | ||
} |