|
|
@@ -4,43 +4,26 @@ import UiLangSelect from "../../components/general/UiLangSelect";
|
|
|
import img_banner from "../../assets/library/images/wikipali_logo_library.svg";
|
|
|
|
|
|
const Widget = () => {
|
|
|
- return (
|
|
|
- <>
|
|
|
- <Layout style={{ textAlign: "right", backgroundColor: "#3e3e3e" }}>
|
|
|
- <UiLangSelect />
|
|
|
- </Layout>
|
|
|
- <div style={{ paddingTop: "3em", backgroundColor: "#3e3e3e" }}>
|
|
|
- <Row>
|
|
|
- <Col flex="auto"></Col>
|
|
|
- <Col flex="400px" style={{ padding: "1em" }}>
|
|
|
- <img
|
|
|
- alt="logo"
|
|
|
- style={{ height: "5em" }}
|
|
|
- src={img_banner}
|
|
|
- />
|
|
|
- </Col>
|
|
|
- <Col flex="400px" style={{ padding: "1em" }}>
|
|
|
- <Outlet />
|
|
|
- <div>
|
|
|
- <Space>
|
|
|
- <Link to="/anonymous/users/sign-in">
|
|
|
- Sign in
|
|
|
- </Link>
|
|
|
- <Link to="/anonymous/users/sign-up">
|
|
|
- Sign up
|
|
|
- </Link>
|
|
|
- <Link to="/anonymous/users/forgot-password">
|
|
|
- Forgot password
|
|
|
- </Link>
|
|
|
- </Space>
|
|
|
- </div>
|
|
|
- </Col>
|
|
|
- <Col flex="auto"></Col>
|
|
|
- </Row>
|
|
|
- </div>
|
|
|
- <div>anonymous layout footer</div>
|
|
|
- </>
|
|
|
- );
|
|
|
+ return (
|
|
|
+ <>
|
|
|
+ <Layout style={{ textAlign: "right", backgroundColor: "#3e3e3e" }}>
|
|
|
+ <UiLangSelect />
|
|
|
+ </Layout>
|
|
|
+ <div style={{ paddingTop: "3em", backgroundColor: "#3e3e3e" }}>
|
|
|
+ <Row>
|
|
|
+ <Col flex="auto"></Col>
|
|
|
+ <Col flex="400px" style={{ padding: "1em" }}>
|
|
|
+ <img alt="logo" style={{ height: "5em" }} src={img_banner} />
|
|
|
+ </Col>
|
|
|
+ <Col flex="400px" style={{ padding: "1em" }}>
|
|
|
+ <Outlet />
|
|
|
+ </Col>
|
|
|
+ <Col flex="auto"></Col>
|
|
|
+ </Row>
|
|
|
+ </div>
|
|
|
+ <div>anonymous layout footer</div>
|
|
|
+ </>
|
|
|
+ );
|
|
|
};
|
|
|
|
|
|
export default Widget;
|