ui : remove the footer under the login box

This commit is contained in:
bsourisse 2023-02-28 09:45:41 +01:00
parent b03e92ad85
commit 38aa8232fa

View file

@ -102,7 +102,8 @@ export default function Login() {
required: true,
})}
/>
{errors.email && errors.email.type === 'required' && (
{errors.email &&
errors.email.type === 'required' && (
<small
style={{
color: 'red',
@ -113,7 +114,8 @@ export default function Login() {
This field is required.
</small>
)}
{errors.email && errors.email.type === 'pattern' && (
{errors.email &&
errors.email.type === 'pattern' && (
<small
style={{
color: 'red',
@ -171,15 +173,6 @@ export default function Login() {
</form>
</main>
</section>
<p style={{ color: '#78797d', textAlign: 'center' }}>
Made with <span></span> by{' '}
<a
style={{ textDecoration: 'none', color: '#5c7fda' }}
href='https://r4ven.fr'
>
Raven
</a>
</p>
</div>
);
}