1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63
|
echo '<tr>';
echo '<td valign="top">';
if ($ajout_photo_2 == 'erreur')
echo '<label for="photo_2" class="erreur">'.extrait_texte(LANG, 'photo_2_a').':</label>';
else
echo '<label for="photo_2">'.extrait_texte(LANG, 'photo_2_a').':</label>';
echo '</td>';
echo '<td align="right">';
echo '<input type="file" name="photo_2" id="photo_2" size="26" /><br />';
echo extrait_texte(LANG, 'maximum_photos_a');
echo '</td>';
echo '</tr>';
echo '</table>';
echo '<h2>';
extrait_texte(LANG, 'contrat_au_pair_a', true);
echo '</h2>';
echo '<hr class="margin_bottom_10" />';
echo '<table class="padding_bottom_20" width="600" border="0" cellpadding="0" cellspacing="0">';
echo '<tr>';
echo '<td class="padding_bottom_02" width="300">';
if (empty($contrat_au_pair) && $clic || $erreur_page == 'contrat non signe')
echo '<span class="erreur">'.extrait_texte(LANG, 'ce_client_a_t_il_signe_le_contrat_au_pair_a').'</span>';
else
extrait_texte(LANG, 'ce_client_a_t_il_signe_le_contrat_au_pair_a', true);
echo '</td>';
echo '<td class="padding_bottom_02" width="300" align="right">';
echo '<input type="radio" name="contrat_au_pair" id="contrat_au_pair_oui" value="1"';
if ($contrat_au_pair == 1)
echo ' checked="checked"';
echo ' onclick="javascript: document.getElementById(\'ligne_optionnelle_01\').style.display = \'block\'" /> <label for="contrat_au_pair_oui">'.extrait_texte(LANG, 'oui_b').'</label> ';
echo '<input type="radio" name="contrat_au_pair" id="contrat_au_pair_non" value="0"';
if ($contrat_au_pair == 0)
echo ' checked="checked"';
echo ' onclick="javascript: document.getElementById(\'ligne_optionnelle_01\').style.display = \'none\'" /> <label for="contrat_au_pair_non">'.extrait_texte(LANG, 'non_b').'</label>';
echo '</td>';
echo '</tr>';
echo '<tr id="ligne_optionnelle_01">';
echo '<td class="padding_bottom_10">';
if (((empty($jour_contrat) || empty($mois_contrat) || empty($annee_contrat)) && $clic && $contrat_au_pair == 2) || $erreur_page == 'date du contrat postdatee' || $erreur_page == 'date du contrat non valide')
echo '<label for="mois_contrat" class="erreur">'.extrait_texte(LANG, 'date_de_signature_modele_entre_parentheses_a').':</label>';
else
echo '<label for="mois_contrat">'.extrait_texte(LANG, 'date_de_signature_modele_entre_parentheses_a').':</label>';
echo '</td>';
echo '<td class="padding_bottom_10" align="right">';
echo '<input type="text" name="mois_contrat" id="mois_contrat" size="2" maxlength="2" ';
if (!empty($mois_contrat))
echo 'value="'.$mois_contrat.'" ';
echo '/> / ';
echo '<input type="text" name="jour_contrat" id="jour_contrat" size="2" maxlength="2" ';
if (!empty($jour_contrat))
echo 'value="'.$jour_contrat.'" ';
echo '/> / ';
echo '<input type="text" name="annee_contrat" id="annee_contrat" size="4" maxlength="4" ';
if (!empty($annee_contrat))
echo 'value="'.$annee_contrat.'" ';
echo '/>';
echo '</td>';
echo '</tr>';
echo '</table>';
echo '<p align="right">';
echo '<input type="submit" name="ajout_client_au_pair" value="'.extrait_texte(LANG, 'valider_a').'" />';
echo '</p>'; |
Partager