77 lines
2.3 KiB
HTML
77 lines
2.3 KiB
HTML
<!DOCTYPE html>
|
|
<html xmlns="http://www.w3.org/1999/xhtml"
|
|
xmlns:h="http://xmlns.jcp.org/jsf/html"
|
|
xmlns:f="http://xmlns.jcp.org/jsf/core"
|
|
xmlns:p="http://primefaces.org/ui">
|
|
|
|
<h:head>
|
|
<title>Session Expirée - UnionFlow</title>
|
|
<style>
|
|
body {
|
|
font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
|
|
background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
|
|
height: 100vh;
|
|
margin: 0;
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: center;
|
|
}
|
|
.error-container {
|
|
background: white;
|
|
border-radius: 16px;
|
|
box-shadow: 0 20px 60px rgba(0,0,0,0.3);
|
|
padding: 48px;
|
|
max-width: 500px;
|
|
text-align: center;
|
|
}
|
|
.error-icon {
|
|
font-size: 72px;
|
|
color: #fbbf24;
|
|
margin-bottom: 24px;
|
|
}
|
|
.error-title {
|
|
font-size: 28px;
|
|
font-weight: 700;
|
|
color: #1f2937;
|
|
margin-bottom: 16px;
|
|
}
|
|
.error-message {
|
|
font-size: 16px;
|
|
color: #6b7280;
|
|
line-height: 1.6;
|
|
margin-bottom: 32px;
|
|
}
|
|
.error-actions {
|
|
display: flex;
|
|
gap: 16px;
|
|
justify-content: center;
|
|
}
|
|
</style>
|
|
</h:head>
|
|
|
|
<h:body>
|
|
<div class="error-container">
|
|
<div class="error-icon">
|
|
<i class="pi pi-clock"></i>
|
|
</div>
|
|
<h1 class="error-title">Session Expirée</h1>
|
|
<p class="error-message">
|
|
Votre session a expiré pour des raisons de sécurité.<br/>
|
|
Veuillez vous reconnecter pour continuer votre travail.
|
|
</p>
|
|
<div class="error-actions">
|
|
<h:form>
|
|
<p:button value="Se reconnecter"
|
|
icon="pi pi-sign-in"
|
|
outcome="/"
|
|
styleClass="ui-button-primary ui-button-lg" />
|
|
<p:button value="Page d'accueil"
|
|
icon="pi pi-home"
|
|
outcome="/index"
|
|
styleClass="ui-button-secondary ui-button-outlined ui-button-lg" />
|
|
</h:form>
|
|
</div>
|
|
</div>
|
|
</h:body>
|
|
|
|
</html> |