This commit introduces new functions to fetch and render participant profile details within the mobile registration interface, including role, name, email, birthdate, and custom questions. The CSS is updated to improve the layout of the profile section. The version code is incremented to 4.72.679 to reflect these changes, enhancing the overall user experience in mobile registrations.
13 lines
780 B
SQL
13 lines
780 B
SQL
-- Inscriptions mobile — fiche participant (courriel, date de naissance)
|
|
|
|
|
|
|
|
DELETE FROM info WHERE info_clef IN (
|
|
|
|
'inscr_mobile_email',
|
|
|
|
'inscr_mobile_birthdate'
|
|
|
|
) AND info_prg = 'compte.php';
|
|
|
|
|
|
|
|
INSERT INTO info (info_clef, info_langue, info_texte, info_aide, info_prg, info_description, info_trie, info_actif, info_option1, info_option2, info_option3, info_creation) VALUES
|
|
|
|
('inscr_mobile_email', 'fr', 'Courriel', '', 'compte.php', '', 0, 1, '', '', '', NOW()),
|
|
|
|
('inscr_mobile_email', 'en', 'Email', '', 'compte.php', '', 0, 1, '', '', '', NOW()),
|
|
|
|
('inscr_mobile_birthdate', 'fr', 'Date de naissance', '', 'compte.php', '', 0, 1, '', '', '', NOW()),
|
|
|
|
('inscr_mobile_birthdate', 'en', 'Date of birth', '', 'compte.php', '', 0, 1, '', '', '', NOW());
|
|
|