|
|
|
@ -1,5 +1,6 @@
|
|
|
|
|
import { useSystem } from "@/apis/hooks";
|
|
|
|
|
import { useReduxStore } from "@/modules/redux/hooks/base";
|
|
|
|
|
import { Environment } from "@/utilities";
|
|
|
|
|
import { FunctionComponent, useState } from "react";
|
|
|
|
|
import { Button, Card, Form, Image, Spinner } from "react-bootstrap";
|
|
|
|
|
import { Navigate } from "react-router-dom";
|
|
|
|
@ -29,7 +30,11 @@ const Authentication: FunctionComponent = () => {
|
|
|
|
|
>
|
|
|
|
|
<Card.Body>
|
|
|
|
|
<Form.Group className="mb-5 d-flex justify-content-center">
|
|
|
|
|
<Image width="64" height="64" src="/static/logo128.png"></Image>
|
|
|
|
|
<Image
|
|
|
|
|
width="64"
|
|
|
|
|
height="64"
|
|
|
|
|
src={`${Environment.baseUrl}/static/logo128.png`}
|
|
|
|
|
></Image>
|
|
|
|
|
</Form.Group>
|
|
|
|
|
<Form.Group>
|
|
|
|
|
<Form.Control
|
|
|
|
|