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
|
<form class="formulaire" name="frmSavePage" id="frmSavePage" method="post" action="/recruthor/index/ajout-candidature/lang/<?php echo $this->langCode;?>/offreId/<?php echo $this->offreId; ?>" enctype="multipart/form-data" >
<div class="menu-box"></div>
<div>
<div class="form-label-cand"><?php echo $this->infoCand->translateReturned; ?></div>
<div class="clear-both"></div>
<div class="input-label"><?php echo $this->nom->translateReturned; ?> <span class="mandatory-star"> * </span></div>
<div class="input-field">
<input type="text" class="input-label" id="candidatNom" name="candidatNom"
value="<?php echo $this->candidat->candidatNom; ?>" />
</div>
<div class="clear-both"></div>
<div class="input-label"><?php echo $this->prenom->translateReturned; ?><span class="mandatory-star"> * </span></div>
<div class="input-field">
<input type="text" class="input-label" id="candidatPrenom" name="candidatPrenom"
value="<?php echo $this->candidat->candidatPrenom; ?>" />
</div>
<div class="clear-both"></div>
<div class="input-label"><?php echo $this->email->translateReturned; ?><span class="mandatory-star"> * </span></div>
<div class="input-field">
<input type="text" class="input-label" id="candidatEmail" name="candidatEmail"
value="<?php echo $this->candidat->candidatEmail; ?>" />
</div>
<div class="clear-both"></div>
<div class="input-label"><?php echo $this->adresse->translateReturned; ?><span class="mandatory-star"> * </span></div>
<div class="input-field" style="width:615px;">
<textarea id="candidatAdresse" name="candidatAdresse">
<?php echo $this->candidat->candidatAdresse; ?></textarea>
</div>
<div class="clear-both"></div>
<div class="input-label" id="candidatCv"><?php echo $this->Cv->translateReturned; ?><span class="mandatory-star"> * </span></div>
<div class="input-field">
<input type="file" class="input-label" id="candidatCv" name="candidatCv"
value="<?php echo $this->candidat->candidatCv; ?>"/>
</div>
<div class="clear-both"></div>
<div class="input-label"><?php echo $this->lettreM->translateReturned; ?><span class="mandatory-star"> * </span></div>
<div class="input-field" style="width:615px;">
<textarea id="candidatLm"
name="candidatLm"><?php echo $this->candidat->candidatAdresse; ?></textarea>
</div>
<script type="text/javascript">
CKEDITOR.replace( 'candidatLm',
{
toolbar : 'FullToolbar',
// Load the German interface.
language: '<?php echo $this->defaultLanguage; ?>'
}
);
</script>
<div class="clear-both"> </div>
<div class="input-label"> </div>
<div class="input-button"><button class="boutton-submit"><?php echo $this->ajoutCand->translateReturned; ?></button></div>
</div>
</form> |