71 lines
2.1 KiB
Twig
71 lines
2.1 KiB
Twig
<!DOCTYPE html>
|
|
<html lang="de">
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
<title>Ungültiger Link - myCRM</title>
|
|
{{ encore_entry_link_tags('app') }}
|
|
<style>
|
|
body {
|
|
margin: 0;
|
|
font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
|
|
background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
|
|
min-height: 100vh;
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: center;
|
|
}
|
|
.error-container {
|
|
background: white;
|
|
border-radius: 12px;
|
|
box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
|
|
padding: 3rem;
|
|
width: 100%;
|
|
max-width: 450px;
|
|
text-align: center;
|
|
}
|
|
.error-icon {
|
|
font-size: 4rem;
|
|
margin-bottom: 1rem;
|
|
}
|
|
h1 {
|
|
color: #dc2626;
|
|
font-size: 1.5rem;
|
|
margin-bottom: 1rem;
|
|
}
|
|
p {
|
|
color: #6b7280;
|
|
line-height: 1.6;
|
|
margin-bottom: 2rem;
|
|
}
|
|
.btn-login {
|
|
display: inline-block;
|
|
padding: 0.875rem 2rem;
|
|
background: #2563eb;
|
|
color: white;
|
|
text-decoration: none;
|
|
border-radius: 6px;
|
|
font-weight: 600;
|
|
transition: background 0.2s;
|
|
}
|
|
.btn-login:hover {
|
|
background: #1d4ed8;
|
|
}
|
|
</style>
|
|
</head>
|
|
<body>
|
|
<div class="error-container">
|
|
<div class="error-icon">⚠️</div>
|
|
<h1>Link ungültig oder abgelaufen</h1>
|
|
<p>
|
|
Der Link zum Einrichten Ihres Passworts ist ungültig oder bereits abgelaufen.
|
|
Links sind 24 Stunden lang gültig.
|
|
</p>
|
|
<p>
|
|
Bitte wenden Sie sich an Ihren Administrator, um einen neuen Link anzufordern.
|
|
</p>
|
|
<a href="{{ path('app_login') }}" class="btn-login">Zur Anmeldeseite</a>
|
|
</div>
|
|
</body>
|
|
</html>
|