-
-
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 #5 from dreampipcom/ar/login-verify
EC-002: CSRF Isomorphism
- Loading branch information
Showing
6 changed files
with
50 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
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,15 @@ | ||
// signin/page.tsx TS-Doc? | ||
'use server'; | ||
import styles from '@styles/page.module.css'; | ||
|
||
export default async function SignUp() { | ||
return ( | ||
<main className={styles.main}> | ||
<article> | ||
<img className={styles.logo} src="/logo.svg" /> | ||
<p>There was an error logging you in.</p> | ||
<p>Please be patient, this is still an Alpha release and not official.</p> | ||
</article> | ||
</main> | ||
); | ||
} |
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,15 @@ | ||
// signin/page.tsx TS-Doc? | ||
'use server'; | ||
import styles from '@styles/page.module.css'; | ||
|
||
export default async function SignUp() { | ||
return ( | ||
<main className={styles.main}> | ||
<article> | ||
<img className={styles.logo} src="/logo.svg" /> | ||
<p>Please check your email.</p> | ||
<p>There should be a login link there.</p> | ||
</article> | ||
</main> | ||
); | ||
} |