From 4ce3be9349b3a19bbc99b7bf783eafeec040b2f7 Mon Sep 17 00:00:00 2001 From: Michael Hunteman Date: Fri, 1 Mar 2024 10:51:06 -0800 Subject: Update formatting on forms --- src/features/auth/GuestLogin.tsx | 21 +++++++++++++++------ 1 file changed, 15 insertions(+), 6 deletions(-) (limited to 'src/features/auth/GuestLogin.tsx') diff --git a/src/features/auth/GuestLogin.tsx b/src/features/auth/GuestLogin.tsx index 61a8fa1..1f228d8 100644 --- a/src/features/auth/GuestLogin.tsx +++ b/src/features/auth/GuestLogin.tsx @@ -1,6 +1,6 @@ import { useNavigate } from 'react-router-dom'; import { useDispatch } from 'react-redux'; -import { Button, Stack, TextField, Typography } from '@mui/material'; +import { Box, Button, Container, TextField, Typography } from '@mui/material'; import { useForm } from 'react-hook-form'; import { setCredentials } from './authSlice'; import { useLoginMutation, LoginRequest } from '../../apiSlice'; @@ -28,28 +28,37 @@ function GuestLogin() { }; return ( -
- + + Guest Login - - -
+ + ); } -- cgit v1.2.3