diff --git a/ui100/src/Login.tsx b/ui100/src/Login.tsx new file mode 100644 index 00000000..5b9d2054 --- /dev/null +++ b/ui100/src/Login.tsx @@ -0,0 +1,40 @@ +import {Box, Button, Container, TextField, Typography} from "@mui/material"; + +const Login = () => { + return ( + + + +

welcome to zrok...

+ + + + + +
+
+
+ ); +} + +export default Login; \ No newline at end of file diff --git a/ui100/src/main.tsx b/ui100/src/main.tsx index 77183852..1b37d21d 100644 --- a/ui100/src/main.tsx +++ b/ui100/src/main.tsx @@ -5,13 +5,15 @@ import ApiConsole from "./ApiConsole.tsx"; import {ThemeProvider} from "@mui/material"; import {theme} from "./model/theme.ts"; import {BrowserRouter, Route, Routes} from "react-router"; +import Login from "./Login.tsx"; createRoot(document.getElementById('root')!).render( - } /> + } /> + } />