-
Notifications
You must be signed in to change notification settings - Fork 184
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
for MPP-3817: redirect inactive users to new account_inactive page
- Loading branch information
1 parent
fa31e8a
commit 59a8b4f
Showing
3 changed files
with
24 additions
and
1 deletion.
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,6 @@ | ||
@import "~@mozilla-protocol/core/protocol/css/includes/lib"; | ||
|
||
.error { | ||
background-color: $color-red-60; | ||
color: $color-white; | ||
} |
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,14 @@ | ||
import type { NextPage } from "next"; | ||
|
||
import { Layout } from "../../components/layout/Layout"; | ||
import styles from "./account_inactive.module.scss"; | ||
|
||
const AccountInactive: NextPage = () => { | ||
return ( | ||
<Layout> | ||
<div className={styles["error"]}>This account is not active.</div> | ||
</Layout> | ||
); | ||
}; | ||
|
||
export default AccountInactive; |
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