| Line 23... |
Line 23... |
| 23 |
# popup2 : if requested a success pop up window
|
23 |
# popup2 : if requested a success pop up window
|
| 24 |
# popup3 : if requested a logout pop up window
|
24 |
# popup3 : if requested a logout pop up window
|
| 25 |
# Default : it was not a form request
|
25 |
# Default : it was not a form request
|
| 26 |
|
26 |
|
| 27 |
# Shared secret used to encrypt challenge with radius.
|
27 |
# Shared secret used to encrypt challenge with radius.
|
| 28 |
$uamsecret = "Mkb0pAEE";
|
28 |
$uamsecret = "";
|
| 29 |
|
29 |
|
| 30 |
# URL loaded after success authenticates (let blank for browser defaults)
|
30 |
# URL loaded after success authenticates (let blank for browser defaults)
|
| 31 |
$adminurl = "";
|
31 |
$adminurl = "";
|
| 32 |
|
32 |
|
| 33 |
# Our own path
|
33 |
# Our own path
|
| 34 |
$loginpath = $_SERVER['PHP_SELF'];
|
34 |
$loginpath = $_SERVER['PHP_SELF'];
|
| - |
|
35 |
$alcasarpath = "http://alcasar";
|
| 35 |
$statuspath = "http://alcasar/status.php";
|
36 |
$statuspath = $alcasarpath."/status.php";
|
| 36 |
$debug = false;
|
37 |
$debug = false;
|
| 37 |
|
38 |
|
| 38 |
# Choice of language
|
39 |
# Choice of language
|
| 39 |
$Language = 'en';
|
40 |
$Language = 'en';
|
| 40 |
if(isset($_SERVER['HTTP_ACCEPT_LANGUAGE'])){
|
41 |
if(isset($_SERVER['HTTP_ACCEPT_LANGUAGE'])){
|
| Line 48... |
Line 49... |
| 48 |
$R_loggingin = "Identificación en el portal cautivo";
|
49 |
$R_loggingin = "Identificación en el portal cautivo";
|
| 49 |
$R_loggedcont = "Red de Control de Acceso";
|
50 |
$R_loggedcont = "Red de Control de Acceso";
|
| 50 |
$R_loggedout = "Su sesión se cierra";
|
51 |
$R_loggedout = "Su sesión se cierra";
|
| 51 |
$R_user = "Usuario";
|
52 |
$R_user = "Usuario";
|
| 52 |
$R_password = "Contraseña";
|
53 |
$R_password = "Contraseña";
|
| 53 |
$R_passwordchg = "Cambie su contraseña";
|
- |
|
| 54 |
$R_wait = "Por favor, espere un momento ...";
|
54 |
$R_wait = "Por favor, espere un momento ...";
|
| 55 |
$R_onlinetime = "Tiempo de conexión:";
|
55 |
$R_onlinetime = "Tiempo de conexión:";
|
| 56 |
$R_remainingtime = "Desconexión en:";
|
56 |
$R_remainingtime = "Desconexión en:";
|
| 57 |
$R_encrypted = "La apertura debe usar conexión cifrada";
|
57 |
$R_encrypted = "La apertura debe usar conexión cifrada";
|
| 58 |
$R_boutonO = "Autenticación";
|
58 |
$R_boutonO = "Autenticación";
|
| 59 |
$R_boutonF = "Cerrar";
|
59 |
$R_boutonF = "Cerrar";
|
| 60 |
$R_loggedin_stringl0 = "Information System Security";
|
60 |
$R_loggedin_stringl1 = "Information System Security";
|
| 61 |
$R_loggedin_stringl1 = "Bienvenido portal ALCASAR";
|
- |
|
| 62 |
$R_loggedin_stringl2 = "El portal fue creado reglamentos para garantizar la trazabilidad, la rendición de cuentas y el no repudio de las conexiones.";
|
61 |
$R_loggedin_stringl2 = "El portal fue creado reglamentos para garantizar la trazabilidad, la rendición de cuentas y el no repudio de las conexiones.";
|
| 63 |
$R_loggedin_stringl3 = "Su actividad en la red es registrada, de conformidad con la privacidad.";
|
62 |
$R_loggedin_stringl3 = "Su actividad en la red es registrada, de conformidad con la privacidad.";
|
| 64 |
$R_loggedin_stringl4 = "Los datos registrados pueden ser capaces de ser operado por una autoridad judicial en el curso de una investigación.";
|
63 |
$R_loggedin_stringl4 = "Los datos registrados pueden ser capaces de ser operado por una autoridad judicial en el curso de una investigación.";
|
| 65 |
$R_loggedin_stringl5 = "Estos datos se eliminan automáticamente después de un año.";
|
64 |
$R_loggedin_stringl5 = "Estos datos se eliminan automáticamente después de un año.";
|
| - |
|
65 |
$R_loggedin_stringl6 = "Click <a href=$alcasarpath>here</a> to change your password or to integrate the security certificate in your browser";
|
| 66 |
$R_loggedout_string = "Cerrar sesión hizo portal cautivo!";
|
66 |
$R_loggedout_string = "Cerrar sesión hizo portal cautivo!";
|
| 67 |
$R_reply_1 = "Your daily connexion time has been reached";
|
67 |
$R_reply_1 = "Your daily connexion time has been reached";
|
| 68 |
$R_reply_2 = "Your monthly connexion time has been reached";
|
68 |
$R_reply_2 = "Your monthly connexion time has been reached";
|
| 69 |
$R_reply_3 = "You try to connect outside of your allowed timespan";
|
69 |
$R_reply_3 = "You try to connect outside of your allowed timespan";
|
| 70 |
$R_reply_4 = "your account expired";
|
70 |
$R_reply_4 = "your account expired";
|
| 71 |
$R_reply_5 = "You have reached the maximum number of simultaneous logins";
|
71 |
$R_reply_5 = "You have reached the maximum number of simultaneous logins";
|
| 72 |
$R_ca_1 = "How integrate the ALCASAR";
|
- |
|
| 73 |
$R_ca_2 = "certificate";
|
- |
|
| 74 |
$R_ca_3 = "in your web browser?";
|
- |
|
| 75 |
$R_ca_4 = "-help-";
|
- |
|
| 76 |
$R_online_time = "Tiempo en linea";
|
72 |
$R_online_time = "Tiempo en linea";
|
| 77 |
$R_remaining_time = "Tiempo restante";
|
73 |
$R_remaining_time = "Tiempo restante";
|
| 78 |
}
|
74 |
}
|
| 79 |
else if($Language == 'de'){
|
75 |
else if($Language == 'de'){
|
| 80 |
$R_ChilliError = "Die Authentifizierung ist erfolgreich durch die Nutzung des Portals erfolgt.";
|
76 |
$R_ChilliError = "Die Authentifizierung ist erfolgreich durch die Nutzung des Portals erfolgt.";
|
| Line 84... |
Line 80... |
| 84 |
$R_loggingin = "Kennzeichnung auf dem Eigenverbrauch";
|
80 |
$R_loggingin = "Kennzeichnung auf dem Eigenverbrauch";
|
| 85 |
$R_loggedcont = "Network Access Control";
|
81 |
$R_loggedcont = "Network Access Control";
|
| 86 |
$R_loggedout = "Ihre Sitzung ist geschlossen";
|
82 |
$R_loggedout = "Ihre Sitzung ist geschlossen";
|
| 87 |
$R_user = "Benutzer";
|
83 |
$R_user = "Benutzer";
|
| 88 |
$R_password = "Passwort";
|
84 |
$R_password = "Passwort";
|
| 89 |
$R_passwordchg = "Passwort ändern";
|
- |
|
| 90 |
$R_wait = "Bitte warten Sie einen Moment ...";
|
85 |
$R_wait = "Bitte warten Sie einen Moment ...";
|
| 91 |
$R_onlinetime = "Online-Zeit:";
|
86 |
$R_onlinetime = "Online-Zeit:";
|
| 92 |
$R_remainingtime = "Abmelden:";
|
87 |
$R_remainingtime = "Abmelden:";
|
| 93 |
$R_encrypted = "Die Öffnung muß der Anschluß Zahlen";
|
88 |
$R_encrypted = "Die Öffnung muß der Anschluß Zahlen";
|
| 94 |
$R_boutonO = "Authentifizierung";
|
89 |
$R_boutonO = "Authentifizierung";
|
| 95 |
$R_boutonF = "Schließen";
|
90 |
$R_boutonF = "Schließen";
|
| 96 |
$R_loggedin_stringl0 = "Information System Security";
|
91 |
$R_loggedin_stringl1 = "Information System Security";
|
| 97 |
$R_loggedin_stringl1 = "Willkommen portal ALCASAR";
|
- |
|
| 98 |
$R_loggedin_stringl2 = "Dieses Portal wurde eingerichtet, um ordnungsgemäß die Rückverfolgbarkeit, der Zurechenbarkeit und der Nicht-Anerkennung der Verbindungen.";
|
92 |
$R_loggedin_stringl2 = "Dieses Portal wurde eingerichtet, um ordnungsgemäß die Rückverfolgbarkeit, der Zurechenbarkeit und der Nicht-Anerkennung der Verbindungen.";
|
| 99 |
$R_loggedin_stringl3 = "Ihre Tätigkeit im Netzwerk registriert ist nach Schutz der Privatsphäre.";
|
93 |
$R_loggedin_stringl3 = "Ihre Tätigkeit im Netzwerk registriert ist nach Schutz der Privatsphäre.";
|
| 100 |
$R_loggedin_stringl4 = "Die gespeicherten Daten nicht pouront genutzt werden, dass von einer Justizbehörde im Rahmen einer Untersuchung.";
|
94 |
$R_loggedin_stringl4 = "Die gespeicherten Daten nicht pouront genutzt werden, dass von einer Justizbehörde im Rahmen einer Untersuchung.";
|
| 101 |
$R_loggedin_stringl5 = "Diese Daten werden automatisch gelöscht nach einem Jahr.";
|
95 |
$R_loggedin_stringl5 = "Diese Daten werden automatisch gelöscht nach einem Jahr.";
|
| - |
|
96 |
$R_loggedin_stringl6 = "Click <a href=$alcasarpath>here</a> to change your password or to integrate the security certificate in your browser";
|
| 102 |
$R_loggedout_string = "Trennung des Portals erfolgt Gefangener!";
|
97 |
$R_loggedout_string = "Trennung des Portals erfolgt Gefangener!";
|
| 103 |
$R_reply_1 = "Your daily connexion time has been reached";
|
98 |
$R_reply_1 = "Your daily connexion time has been reached";
|
| 104 |
$R_reply_2 = "Your monthly connexion time has been reached";
|
99 |
$R_reply_2 = "Your monthly connexion time has been reached";
|
| 105 |
$R_reply_3 = "You try to connect outside of your allowed timespan";
|
100 |
$R_reply_3 = "You try to connect outside of your allowed timespan";
|
| 106 |
$R_reply_4 = "your account expired";
|
101 |
$R_reply_4 = "your account expired";
|
| 107 |
$R_reply_5 = "You have reached the maximum number of simultaneous logins";
|
102 |
$R_reply_5 = "You have reached the maximum number of simultaneous logins";
|
| 108 |
$R_ca_1 = "How integrate the ALCASAR";
|
- |
|
| 109 |
$R_ca_2 = "certificate";
|
- |
|
| 110 |
$R_ca_3 = "in your web browser?";
|
- |
|
| 111 |
$R_ca_4 = "-help-";
|
- |
|
| 112 |
$R_online_time = "Online-zeit";
|
103 |
$R_online_time = "Online-zeit";
|
| 113 |
$R_remaining_time = "Restzeit";
|
104 |
$R_remaining_time = "Restzeit";
|
| 114 |
|
105 |
|
| 115 |
}
|
106 |
}
|
| 116 |
else if($Language == 'nl'){
|
107 |
else if($Language == 'nl'){
|
| Line 121... |
Line 112... |
| 121 |
$R_loggingin = "Identificatie van de captive-portaal";
|
112 |
$R_loggingin = "Identificatie van de captive-portaal";
|
| 122 |
$R_loggedcont = "Network Access Control";
|
113 |
$R_loggedcont = "Network Access Control";
|
| 123 |
$R_loggedout = "Uw sessie is gesloten";
|
114 |
$R_loggedout = "Uw sessie is gesloten";
|
| 124 |
$R_user = "Gebruiker";
|
115 |
$R_user = "Gebruiker";
|
| 125 |
$R_password = "Wachtwoord";
|
116 |
$R_password = "Wachtwoord";
|
| 126 |
$R_passwordchg = "Wijzig uw wachtwoord";
|
- |
|
| 127 |
$R_wait = "Wacht een moment ...";
|
117 |
$R_wait = "Wacht een moment ...";
|
| 128 |
$R_onlinetime = "Sluit tijd:";
|
118 |
$R_onlinetime = "Sluit tijd:";
|
| 129 |
$R_remainingtime = "Verbreking in:";
|
119 |
$R_remainingtime = "Verbreking in:";
|
| 130 |
$R_encrypted = "De opening moet gebruiken gecodeerde verbinding";
|
120 |
$R_encrypted = "De opening moet gebruiken gecodeerde verbinding";
|
| 131 |
$R_boutonO = "Authenticatie";
|
121 |
$R_boutonO = "Authenticatie";
|
| 132 |
$R_boutonF = "Sluiten";
|
122 |
$R_boutonF = "Sluiten";
|
| 133 |
$R_loggedin_stringl0 = "Information System Security";
|
123 |
$R_loggedin_stringl1 = "Information System Security";
|
| 134 |
$R_loggedin_stringl1 = "Welkom portaal ALCASAR";
|
- |
|
| 135 |
$R_loggedin_stringl2 = "Het portaal werd opgericht verordeningen om de traceerbaarheid, verantwoordelijkheid en onloochenbaarheid van de verbindingen.";
|
124 |
$R_loggedin_stringl2 = "Het portaal werd opgericht verordeningen om de traceerbaarheid, verantwoordelijkheid en onloochenbaarheid van de verbindingen.";
|
| 136 |
$R_loggedin_stringl3 = "Uw activiteit op het netwerk is geregistreerd in overeenstemming met de persoonlijke levenssfeer.";
|
125 |
$R_loggedin_stringl3 = "Uw activiteit op het netwerk is geregistreerd in overeenstemming met de persoonlijke levenssfeer.";
|
| 137 |
$R_loggedin_stringl4 = "De geregistreerde gegevens kunnen worden kunnen worden bediend door een rechterlijke instantie in de loop van een onderzoek.";
|
126 |
$R_loggedin_stringl4 = "De geregistreerde gegevens kunnen worden kunnen worden bediend door een rechterlijke instantie in de loop van een onderzoek.";
|
| 138 |
$R_loggedin_stringl5 = "Deze gegevens worden automatisch verwijderd na een jaar.";
|
127 |
$R_loggedin_stringl5 = "Deze gegevens worden automatisch verwijderd na een jaar.";
|
| - |
|
128 |
$R_loggedin_stringl6 = "Click <a href=$alcasarpath>here</a> to change your password or to integrate the security certificate in your browser";
|
| 139 |
$R_loggedout_string = "Logout gemaakt intern portaal!";
|
129 |
$R_loggedout_string = "Logout gemaakt intern portaal!";
|
| 140 |
$R_reply_1 = "Your daily connexion time has been reached";
|
130 |
$R_reply_1 = "Your daily connexion time has been reached";
|
| 141 |
$R_reply_2 = "Your monthly connexion time has been reached";
|
131 |
$R_reply_2 = "Your monthly connexion time has been reached";
|
| 142 |
$R_reply_3 = "You try to connect outside of your allowed timespan";
|
132 |
$R_reply_3 = "You try to connect outside of your allowed timespan";
|
| 143 |
$R_reply_4 = "your account expired";
|
133 |
$R_reply_4 = "your account expired";
|
| 144 |
$R_reply_5 = "You have reached the maximum number of simultaneous logins";
|
134 |
$R_reply_5 = "You have reached the maximum number of simultaneous logins";
|
| 145 |
$R_ca_1 = "How integrate the ALCASAR";
|
- |
|
| 146 |
$R_ca_2 = "certificate";
|
- |
|
| 147 |
$R_ca_3 = "in your web browser?";
|
- |
|
| 148 |
$R_ca_4 = "-help-";
|
- |
|
| 149 |
$R_online_time = "Online tijd";
|
135 |
$R_online_time = "Online tijd";
|
| 150 |
$R_remaining_time = "Reterende tijd";
|
136 |
$R_remaining_time = "Reterende tijd";
|
| 151 |
}
|
137 |
}
|
| 152 |
else if($Language == 'fr'){
|
138 |
else if($Language == 'fr'){
|
| 153 |
$R_ChilliError = "L'authentification doit être réussie au travers du service du portail captif.";
|
139 |
$R_ChilliError = "L'authentification doit être réussie au travers du service du portail captif.";
|
| Line 157... |
Line 143... |
| 157 |
$R_loggingin = "Identification sur le portail captif";
|
143 |
$R_loggingin = "Identification sur le portail captif";
|
| 158 |
$R_loggedcont = "Contrôle d'accès au réseau";
|
144 |
$R_loggedcont = "Contrôle d'accès au réseau";
|
| 159 |
$R_loggedout = "Votre session est fermée";
|
145 |
$R_loggedout = "Votre session est fermée";
|
| 160 |
$R_user = "Identifiant";
|
146 |
$R_user = "Identifiant";
|
| 161 |
$R_password = "Mot de passe";
|
147 |
$R_password = "Mot de passe";
|
| 162 |
$R_passwordchg = "Modifier son mot de passe";
|
- |
|
| 163 |
$R_wait = "Patientez un instant ...";
|
148 |
$R_wait = "Patientez un instant ...";
|
| 164 |
$R_onlinetime = "Temps de connexion:";
|
149 |
$R_onlinetime = "Temps de connexion:";
|
| 165 |
$R_remainingtime = "Deconnexion dans :";
|
150 |
$R_remainingtime = "Deconnexion dans :";
|
| 166 |
$R_encrypted = "La connexion avec le portail doit être chiffrée";
|
151 |
$R_encrypted = "La connexion avec le portail doit être chiffrée";
|
| 167 |
$R_boutonO = "Authentification";
|
152 |
$R_boutonO = "Authentification";
|
| 168 |
$R_boutonF = "Fermer";
|
153 |
$R_boutonF = "Fermer";
|
| 169 |
$R_loggedin_stringl0 = "Sécurité des Systèmes d'Information";
|
154 |
$R_loggedin_stringl1 = "Sécurité des Systèmes d'Information";
|
| 170 |
$R_loggedin_stringl1 = "Bienvenue sur le portail captif ALCASAR";
|
- |
|
| 171 |
$R_loggedin_stringl2 = "Ce portail a été mis en place pour assurer réglementairement la traçabilité, l'imputabilité et la non-répudiation des connexions.";
|
155 |
$R_loggedin_stringl2 = "Ce contrôle a été mis en place pour assurer réglementairement la traçabilité, l'imputabilité et la non-répudiation des connexions.";
|
| 172 |
$R_loggedin_stringl3 = "Votre activité sur le réseau est enregistrée conformément au respect de la vie privée.";
|
156 |
$R_loggedin_stringl3 = "Votre activité sur le réseau est enregistrée conformément au respect de la vie privée.";
|
| 173 |
$R_loggedin_stringl4 = "Les données enregistrées ne pourront être exploitées que par une autorité judiciaire dans le cadre d'une enquête.";
|
157 |
$R_loggedin_stringl4 = "Les données enregistrées ne pourront être exploitées que par une autorité judiciaire dans le cadre d'une enquête.";
|
| 174 |
$R_loggedin_stringl5 = "Ces données seront automatiquement supprimées au bout d'un an.";
|
158 |
$R_loggedin_stringl5 = "Ces données seront automatiquement supprimées au bout d'un an.";
|
| - |
|
159 |
$R_loggedin_stringl6 = "Cliquez <a href=$alcasarpath>ici</a> pour changer votre mot de passe ou pour intégrer le certificat de sécurité à votre navigateur";
|
| 175 |
$R_loggedout_string = "Déconnexion du portail captif effectuée !";
|
160 |
$R_loggedout_string = "Déconnexion du portail captif effectuée !";
|
| 176 |
$R_reply_1 = "Votre durée de connexion journalière a été atteinte";
|
161 |
$R_reply_1 = "Votre durée de connexion journalière a été atteinte";
|
| 177 |
$R_reply_2 = "Votre durée de connexion mensuelle a été atteinte";
|
162 |
$R_reply_2 = "Votre durée de connexion mensuelle a été atteinte";
|
| 178 |
$R_reply_3 = "Vous tentez de vous connecter en dehors de votre période autorisée";
|
163 |
$R_reply_3 = "Vous tentez de vous connecter en dehors de votre période autorisée";
|
| 179 |
$R_reply_4 = "Votre compte a expiré";
|
164 |
$R_reply_4 = "Votre compte a expiré";
|
| 180 |
$R_reply_5 = "Vous avez atteint le nombre maximum de connexions simultanées";
|
165 |
$R_reply_5 = "Vous avez atteint le nombre maximum de connexions simultanées";
|
| 181 |
$R_ca_1 = "Intégrer le ";
|
- |
|
| 182 |
$R_ca_2 = "certificat";
|
- |
|
| 183 |
$R_ca_3 = "d'ALCASAR dans votre navigateur WEB";
|
- |
|
| 184 |
$R_ca_4 = "- Aide -";
|
- |
|
| 185 |
$R_online_time = "Temps de connexion";
|
166 |
$R_online_time = "Temps de connexion";
|
| 186 |
$R_remaining_time = "Temps restant";
|
167 |
$R_remaining_time = "Temps restant";
|
| 187 |
}
|
168 |
}
|
| 188 |
else{
|
169 |
else{
|
| 189 |
$R_ChilliError = "The authentication must be successful through the captive portal service.";
|
170 |
$R_ChilliError = "The authentication must be successful through the captive portal service.";
|
| Line 193... |
Line 174... |
| 193 |
$R_loggingin = "Identification on the captive portal";
|
174 |
$R_loggingin = "Identification on the captive portal";
|
| 194 |
$R_loggedcont = "Network Access Control";
|
175 |
$R_loggedcont = "Network Access Control";
|
| 195 |
$R_loggedout = "Your session is closed";
|
176 |
$R_loggedout = "Your session is closed";
|
| 196 |
$R_user = "User";
|
177 |
$R_user = "User";
|
| 197 |
$R_password = "Password";
|
178 |
$R_password = "Password";
|
| 198 |
$R_passwordchg = "Change your password";
|
- |
|
| 199 |
$R_wait = "Please wait a moment ...";
|
179 |
$R_wait = "Please wait a moment ...";
|
| 200 |
$R_onlinetime = "Connect time:";
|
180 |
$R_onlinetime = "Connect time:";
|
| 201 |
$R_remainingtime = "Disconnection in:";
|
181 |
$R_remainingtime = "Disconnection in:";
|
| 202 |
$R_encrypted = "The opening must use encrypted connection";
|
182 |
$R_encrypted = "The opening must use encrypted connection";
|
| 203 |
$R_boutonO = "Authentication";
|
183 |
$R_boutonO = "Authentication";
|
| 204 |
$R_boutonF = "Close";
|
184 |
$R_boutonF = "Close";
|
| 205 |
$R_loggedin_stringl0 = "Information System Security";
|
185 |
$R_loggedin_stringl1 = "Information System Security";
|
| 206 |
$R_loggedin_stringl1 = "Welcome on captive portal ALCASAR";
|
- |
|
| 207 |
$R_loggedin_stringl2 = "The portal was set up regulations to ensure traceability, accountability and non-repudiation of connections.";
|
186 |
$R_loggedin_stringl2 = "That control was set up regulations to ensure traceability, accountability and non-repudiation of connections.";
|
| 208 |
$R_loggedin_stringl3 = "Your activity on the network is registered in accordance with privacy.";
|
187 |
$R_loggedin_stringl3 = "Your activity on the network is registered in accordance with privacy.";
|
| 209 |
$R_loggedin_stringl4 = "The recorded data can be able to be operated by a judicial authority in the course of an investigation.";
|
188 |
$R_loggedin_stringl4 = "The recorded data can be able to be operated by a judicial authority in the course of an investigation.";
|
| 210 |
$R_loggedin_stringl5 = "These data will be automatically deleted after one year.";
|
189 |
$R_loggedin_stringl5 = "These data will be automatically deleted after one year.";
|
| - |
|
190 |
$R_loggedin_stringl6 = "Click <a href=$alcasarpath>here</a> to change your password or to integrate the security certificate in your browser";
|
| 211 |
$R_loggedout_string = "Logout made captive portal!";
|
191 |
$R_loggedout_string = "Logout made captive portal!";
|
| 212 |
$R_reply_1 = "Your daily connexion time has been reached";
|
192 |
$R_reply_1 = "Your daily connexion time has been reached";
|
| 213 |
$R_reply_2 = "Your monthly connexion time has been reached";
|
193 |
$R_reply_2 = "Your monthly connexion time has been reached";
|
| 214 |
$R_reply_3 = "You try to connect outside of your allowed timespan";
|
194 |
$R_reply_3 = "You try to connect outside of your allowed timespan";
|
| 215 |
$R_reply_4 = "your account expired";
|
195 |
$R_reply_4 = "your account expired";
|
| 216 |
$R_reply_5 = "You have reached the maximum number of simultaneous logins";
|
196 |
$R_reply_5 = "You have reached the maximum number of simultaneous logins";
|
| 217 |
$R_ca_1 = "Integrate the ALCASAR";
|
- |
|
| 218 |
$R_ca_2 = "certificate";
|
- |
|
| 219 |
$R_ca_3 = "in your web browser";
|
- |
|
| 220 |
$R_ca_4 = "-help-";
|
- |
|
| 221 |
$R_online_time = "Online time";
|
197 |
$R_online_time = "Online time";
|
| 222 |
$R_remaining_time = "Remaining time";
|
198 |
$R_remaining_time = "Remaining time";
|
| 223 |
}
|
199 |
}
|
| 224 |
|
200 |
|
| 225 |
# Make sure that the form parameters are clean
|
201 |
# Make sure that the form parameters are clean
|
| Line 431... |
Line 407... |
| 431 |
<input type=\"hidden\" name=\"uamip\" value=\"$uamip\">
|
407 |
<input type=\"hidden\" name=\"uamip\" value=\"$uamip\">
|
| 432 |
<input type=\"hidden\" name=\"uamport\" value=\"$uamport\">
|
408 |
<input type=\"hidden\" name=\"uamport\" value=\"$uamport\">
|
| 433 |
<input type=\"hidden\" name=\"userurl\" value=\"$userurl\">
|
409 |
<input type=\"hidden\" name=\"userurl\" value=\"$userurl\">
|
| 434 |
<TABLE id=\"boite-logon\">
|
410 |
<TABLE id=\"boite-logon\">
|
| 435 |
<TR>
|
411 |
<TR>
|
| 436 |
<TD width=\"20%\" rowspan=\"4\"><IMG id=\"logo-organ\" src=\"/images/organisme.png\"></TD>
|
412 |
<TD width=\"20%\" rowspan=\"3\"><IMG id=\"logo-organ\" src=\"/images/organisme.png\"></TD>
|
| 437 |
<TD width=\"30%\" align=\"right\">$R_user</TD>
|
413 |
<TD width=\"30%\" align=\"right\">$R_user</TD>
|
| 438 |
<TD width=\"50%\" align=\"left\"><INPUT type=\"text\" maxLength=\"32\" name=\"UserName\"></TD>
|
414 |
<TD width=\"50%\" align=\"left\"><INPUT type=\"text\" maxLength=\"32\" name=\"UserName\"></TD>
|
| 439 |
</TR>
|
415 |
</TR>
|
| 440 |
<TR>
|
416 |
<TR>
|
| 441 |
<TD align=\"right\">$R_password</TD>
|
417 |
<TD align=\"right\">$R_password</TD>
|
| 442 |
<TD align=\"left\"><INPUT maxLength=\"32\" type=\"password\" name=\"Password\"></TD>
|
418 |
<TD align=\"left\"><INPUT maxLength=\"32\" type=\"password\" name=\"Password\"></TD>
|
| 443 |
</TR>
|
419 |
</TR>
|
| 444 |
<TR>
|
420 |
<TR>
|
| 445 |
<TD height=\"23\" colSpan=\"2\" align=\"center\"><INPUT value=\"$R_boutonO\" type=\"submit\" name=\"button\" onclick=\"javascript:popUp('$statuspath')\"></TD>
|
421 |
<TD height=\"23\" colSpan=\"2\" align=\"center\"><INPUT value=\"$R_boutonO\" type=\"submit\" name=\"button\" onclick=\"javascript:popUp('$statuspath')\"></TD>
|
| 446 |
</TR>
|
422 |
</TR>
|
| 447 |
<TR>
|
- |
|
| 448 |
<TD colSpan=2 align=center><H6><A href=\"https://$uamip/pass/\">$R_passwordchg</A></H6></TD>
|
- |
|
| 449 |
</TR>
|
- |
|
| 450 |
</TABLE>
|
423 |
</TABLE>
|
| 451 |
<TABLE id=\"boite-info\" cellSpacing=\"0\" cellPadding=\"0\" width=\"100%\">
|
424 |
<TABLE id=\"boite-info\" cellSpacing=\"0\" cellPadding=\"0\" width=\"100%\">
|
| 452 |
<TR>
|
425 |
<TR>
|
| 453 |
<TD align=\"center\"><FONT color=\"red\"><B>$R_loggedin_stringl0</B></FONT></TD>
|
426 |
<TD align=\"center\"><FONT color=\"red\"><B>$R_loggedin_stringl1</B></FONT></TD>
|
| 454 |
</TR>
|
- |
|
| 455 |
<TR>
|
- |
|
| 456 |
<TD align=\"center\"><FONT color=\"black\"><B>$R_loggedin_stringl1</B></FONT></TD>
|
- |
|
| 457 |
</TR>
|
427 |
</TR>
|
| 458 |
<TR>
|
428 |
<TR>
|
| 459 |
<TD align=\"left\">
|
429 |
<TD align=\"left\">
|
| 460 |
<UL>
|
430 |
<UL>
|
| 461 |
<LI>$R_loggedin_stringl2</LI>
|
431 |
<LI>$R_loggedin_stringl2</LI>
|
| 462 |
<LI>$R_loggedin_stringl4</LI>
|
432 |
<LI>$R_loggedin_stringl4</LI>
|
| 463 |
<LI>$R_loggedin_stringl3</LI>
|
433 |
<LI>$R_loggedin_stringl3</LI>
|
| 464 |
<LI>$R_loggedin_stringl5</LI>
|
434 |
<LI>$R_loggedin_stringl5</LI>
|
| - |
|
435 |
<LI>$R_loggedin_stringl6</LI>
|
| 465 |
</UL>
|
436 |
</UL>
|
| 466 |
<P id=\"aide-certif\">
|
- |
|
| 467 |
$R_ca_1 <A href=\"/certs/certificat_alcasar_ca.crt\">$R_ca_2</a> $R_ca_3 <a href=\"/alcasar-certificat.pdf\">$R_ca_4</A>
|
- |
|
| 468 |
</P>
|
- |
|
| 469 |
</TD>
|
437 |
</TD>
|
| 470 |
</TR>
|
438 |
</TR>
|
| 471 |
</TABLE>
|
439 |
</TABLE>
|
| 472 |
|
440 |
|
| 473 |
</center>
|
441 |
</center>
|