Behebe Fehler in #46

This commit is contained in:
nocnico
2025-07-06 02:38:35 +02:00
parent 2cdbab9f28
commit 76384c6ecd
5 changed files with 79 additions and 60 deletions

View File

@@ -28,6 +28,11 @@
scrollbar-gutter: unset; scrollbar-gutter: unset;
} }
.leaflet-container:focus {
outline: none !important;
box-shadow: none !important;
}
.leaflet-popup-tip-container { .leaflet-popup-tip-container {
display: none; display: none;
} }

View File

@@ -62,6 +62,11 @@ export const Login = () => {
Registrierung Registrierung
</Link> </Link>
</span> </span>
<div className="alert alert-info alert-outline text-sm font-semibold text-center">
Du warst bereits Nutzer der V1? <br />
Registriere dich mit der gleichen E-Mail, um deinen Account zu übernehmen!
</div>
<div className="mt-5 mb-2">
<label className="input input-bordered flex items-center gap-2 w-full"> <label className="input input-bordered flex items-center gap-2 w-full">
<svg <svg
xmlns="http://www.w3.org/2000/svg" xmlns="http://www.w3.org/2000/svg"
@@ -110,6 +115,7 @@ export const Login = () => {
Login Login
</Button> </Button>
</div> </div>
</div>
</form> </form>
); );
}; };

View File

@@ -1,9 +1,11 @@
import { Login } from './_components/Login'; import { Login } from "./_components/Login";
export default async () => { const LoginPage = async () => {
return ( return (
<> <>
<Login /> <Login />
</> </>
); );
}; };
export default LoginPage;

View File

@@ -94,6 +94,10 @@ export const Register = () => {
Login Login
</Link> </Link>
</span> </span>
<div className="alert alert-info alert-outline text-sm font-semibold text-center">
Du warst bereits Nutzer der V1? <br />
Registriere dich mit der gleichen E-Mail, um deinen Account zu übernehmen!
</div>
<div className="mt-5 mb-2"> <div className="mt-5 mb-2">
<label className="input input-bordered flex items-center gap-2 mt-2 w-full"> <label className="input input-bordered flex items-center gap-2 mt-2 w-full">
<svg <svg

View File

@@ -1,9 +1,11 @@
import { Register } from './_components/Register'; import { Register } from "./_components/Register";
export default () => { const RegisterPage = () => {
return ( return (
<> <>
<Register /> <Register />
</> </>
); );
}; };
export default RegisterPage;