Enhance mobile registration interface and update version code

This commit introduces several improvements to the mobile registration functionality, including the addition of a new function for parsing event IDs and updates to the CSS for a cleaner layout. The logic for displaying event information has been refined, and new JavaScript features have been added to improve user navigation. The version code is incremented to 4.72.671 to reflect these enhancements, further optimizing the mobile user experience.
This commit is contained in:
2026-06-18 13:48:01 -04:00
parent b7fa26d1e9
commit 146f692a46
7 changed files with 498 additions and 346 deletions

View File

@ -335,6 +335,7 @@ $strMetaTitle = fxRemoveHtml(fxUnescape($recPage['pag_titre_' . $strLangue]));
$strMetaDescription = fxRemoveHtml(fxUnescape($recPage['pag_description_' . $strLangue]));
$strMetaKeywords = fxRemoveHtml(fxUnescape($recPage['pag_keywords_' . $strLangue]));
$blnBoutonRetour = true;
$blnHideCompteTitle = false;
require_once("inc_header.php");
@ -344,7 +345,7 @@ require_once("inc_header.php");
<div class="container bg-white p-3 p-xl-5">
<?php
if (isset($recPage['pag_titre_' . $strLangue]) != '') {
if (isset($recPage['pag_titre_' . $strLangue]) != '' && empty($blnHideCompteTitle)) {
?>
@ -361,7 +362,7 @@ require_once("inc_header.php");
}
if (isset($_SESSION['msg'])) {
echo fxMessage($_SESSION['msg'], '', $strLangue);
} else {
} else if (empty($blnHideCompteTitle)) {
?>
<br>
<?php
@ -705,6 +706,7 @@ require_once("inc_header.php");
case 'compte_inc_tableau_inscriptions_mobile':
$blnBoutonRetour = false;
$footer_script = true;
$blnHideCompteTitle = true;
include("inc_tableau_inscriptions_mobile.php");
break;
case 'compte_inc_tableau_mail_entraineurs':