2021-04-21 18:21:30 +02:00
|
|
|
import React from "react"
|
|
|
|
import Style from "./PageSettings.module.css"
|
|
|
|
import classNames from "classnames"
|
2021-04-23 02:24:38 +02:00
|
|
|
import BoxHeader from "../components/BoxHeader"
|
2021-04-23 02:26:16 +02:00
|
|
|
import BoxFull from "../components/BoxFull"
|
2021-04-21 18:58:14 +02:00
|
|
|
import SelectTheme from "../components/SelectTheme"
|
2021-04-21 18:21:30 +02:00
|
|
|
|
|
|
|
|
|
|
|
export default function PageSettings({ children, className, ...props }) {
|
|
|
|
return (
|
|
|
|
<div className={classNames(Style.PageSettings, className)} {...props}>
|
2021-04-23 02:24:38 +02:00
|
|
|
<BoxHeader>
|
2021-04-21 18:42:28 +02:00
|
|
|
You are currently logged in as:
|
2021-04-23 02:24:38 +02:00
|
|
|
</BoxHeader>
|
|
|
|
<BoxHeader>
|
2021-04-21 18:58:14 +02:00
|
|
|
Switch theme: <SelectTheme/>
|
2021-04-23 02:24:38 +02:00
|
|
|
</BoxHeader>
|
2021-04-23 02:26:16 +02:00
|
|
|
<BoxFull header={"Change your email address"}>
|
2021-04-21 18:42:28 +02:00
|
|
|
|
2021-04-23 02:26:16 +02:00
|
|
|
</BoxFull>
|
|
|
|
<BoxFull header={"Alert settings"}>
|
2021-04-21 18:42:28 +02:00
|
|
|
|
2021-04-23 02:26:16 +02:00
|
|
|
</BoxFull>
|
|
|
|
<BoxFull header={"Change your password"}>
|
2021-04-21 18:42:28 +02:00
|
|
|
|
2021-04-23 02:26:16 +02:00
|
|
|
</BoxFull>
|
2021-04-21 18:21:30 +02:00
|
|
|
</div>
|
|
|
|
)
|
|
|
|
}
|