-
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
Showing
17 changed files
with
41 additions
and
38 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 |
---|---|---|
|
@@ -51,7 +51,7 @@ const Login: FC<LoginProps> = () => { | |
<div style={{ width: "100%", maxWidth: "500px" }}> | ||
<form onSubmit={handleSubmit}> | ||
<FlexColumn width="100%"> | ||
<div className={styles.Alert}> | ||
{/* <div className={styles.Alert}> | ||
Accepting new members for the Fall 2023 semester! After paying | ||
the dues, your account will automatically be activated. | ||
Make sure to use the email associated with your previous account | ||
|
@@ -65,8 +65,8 @@ const Login: FC<LoginProps> = () => { | |
href="mailto:[email protected]">[email protected] | ||
</a>. | ||
Welcome to the DSGT Family 😄 | ||
</div> | ||
<h1 className={styles.Major}>Login</h1> | ||
</div> */} | ||
<h1 className={styles.Major}>DSGT Login</h1> | ||
<InputField | ||
type="email" | ||
placeholder="Email" | ||
|
@@ -95,7 +95,7 @@ const Login: FC<LoginProps> = () => { | |
: "" | ||
}`} | ||
> | ||
forgot password? | ||
Forgot password? | ||
</a> | ||
</FlexRow> | ||
</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
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 |
---|---|---|
@@ -1,4 +1,6 @@ | ||
.PortalCheckin { | ||
padding-left: 10em; | ||
padding-top: 5em; | ||
} | ||
|
||
.ScanVideo { | ||
|
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
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
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
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 |
---|---|---|
@@ -1,4 +1,6 @@ | ||
.PortalTeams { | ||
padding-left: 10em; | ||
padding-top: 5em; | ||
} | ||
|
||
.DescriptionInput { | ||
|
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 |
---|---|---|
|
@@ -205,7 +205,7 @@ | |
} | ||
|
||
.Open { | ||
width: 20em; | ||
width: 12em; | ||
} | ||
.Closed { | ||
width: 5.5em; | ||
|
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 |
---|---|---|
|
@@ -4,13 +4,6 @@ import { checkUserEmail } from "../../model"; | |
export async function seed(knex: Knex): Promise<void> { | ||
// Inserts seed entries | ||
if (process.env.NODE_ENV == "development") { | ||
// await knex("billing_details").insert({ email: "[email protected]" }); | ||
// if (await checkUserEmail("[email protected]")) { | ||
// await knex("user") | ||
// .update({ role: "developer" }) | ||
// .where({ email: "[email protected]" }); | ||
// } | ||
|
||
// FACTORY RESET | ||
// await knex("billing_details").del(); | ||
// await knex("user").del(); | ||
|