Update resources/scripts/components/auth/LoginFormContainer.tsx
This commit is contained in:
parent
455ab826a1
commit
56c61599c0
1 changed files with 5 additions and 12 deletions
|
@ -8,6 +8,7 @@ import tw from 'twin.macro';
|
||||||
import BeforeContent from '@/blueprint/components/Authentication/Container/BeforeContent';
|
import BeforeContent from '@/blueprint/components/Authentication/Container/BeforeContent';
|
||||||
import AfterContent from '@/blueprint/components/Authentication/Container/AfterContent';
|
import AfterContent from '@/blueprint/components/Authentication/Container/AfterContent';
|
||||||
|
|
||||||
|
|
||||||
type Props = React.DetailedHTMLProps<React.FormHTMLAttributes<HTMLFormElement>, HTMLFormElement> & {
|
type Props = React.DetailedHTMLProps<React.FormHTMLAttributes<HTMLFormElement>, HTMLFormElement> & {
|
||||||
title?: string;
|
title?: string;
|
||||||
};
|
};
|
||||||
|
@ -38,23 +39,15 @@ export default forwardRef<HTMLFormElement, Props>(({ title, ...props }, ref) =>
|
||||||
<BeforeContent />
|
<BeforeContent />
|
||||||
<Form {...props} ref={ref}>
|
<Form {...props} ref={ref}>
|
||||||
<div css={tw`md:flex w-full bg-white shadow-lg rounded-lg p-6 md:pl-0 mx-1`}>
|
<div css={tw`md:flex w-full bg-white shadow-lg rounded-lg p-6 md:pl-0 mx-1`}>
|
||||||
<div css={tw`flex-none select-none mb-6 md:mb-0 self-center`}>
|
<div css={tw`flex-none select-none mb-6 md:mb-0 self-center p-6`}>
|
||||||
<img src={'/assets/svgs/pterodactyl.svg'} css={tw`block w-48 md:w-64 mx-auto`} />
|
<img src={'/pelican.svg'} css={tw`block w-48 md:w-56 mx-auto`} />
|
||||||
</div>
|
</div>
|
||||||
<div css={tw`flex-1`}>{props.children}</div>
|
<div css={tw`flex-1`}>{props.children}</div>
|
||||||
</div>
|
</div>
|
||||||
</Form>
|
</Form>
|
||||||
<AfterContent />
|
<AfterContent />
|
||||||
<p css={tw`text-center text-neutral-500 text-xs mt-4`}>
|
<p css={tw`text-center text-neutral-500 text-xs mt-4`}>
|
||||||
© 2015 - {new Date().getFullYear()}
|
Pelican © 2024 - {new Date().getFullYear()}
|
||||||
<a
|
|
||||||
rel={'noopener nofollow noreferrer'}
|
|
||||||
href={'https://pterodactyl.io'}
|
|
||||||
target={'_blank'}
|
|
||||||
css={tw`no-underline text-neutral-500 hover:text-neutral-300`}
|
|
||||||
>
|
|
||||||
Pterodactyl Software
|
|
||||||
</a>
|
|
||||||
</p>
|
</p>
|
||||||
</Container>
|
</Container>
|
||||||
));
|
));
|
Loading…
Reference in a new issue