- Posts: 12
- Thank you received: 1
Please Log in or Create an account to join the conversation.
Please Log in or Create an account to join the conversation.
Please Log in or Create an account to join the conversation.
Please Log in or Create an account to join the conversation.
Please Log in or Create an account to join the conversation.
<div>
<?php if ($u_id){
echo '<label>'.JText::_( 'ICAGENDA_REGISTRATION_FORM_USERID' ).'</label>
<input type="text" value="'.$u_id.'" disabled="disabled" size="2" />
<input type="hidden" name="uid" value="'.$u_id.'" />';
}else{
echo '<input type="hidden" name="uid" value="" disabled="disabled" size="2" />';
}?>
<?php if ($u_id){ ?>
<span class="formInfo">
<a class="ictip"><img src="<?php echo $infoimg; ?>" />
<span>
<span class="title"><?php echo JText::_( 'ICAGENDA_REGISTRATION_FORM_USERID' ); ?></span>
<div class="text"><?php echo JText::_( 'ICAGENDA_REGISTRATION_FORM_USERID_DESC' ); ?></div>
</span>
</a>
</span>
<?php } ?>
</div>
<div>
echo '<input type="hidden" name="uid" value="" disabled="disabled" size="2" />';
</div>
<div>
<?php if ($item->emailRequired == '1') { ?>
<label><?php echo JText::_( 'ICAGENDA_REGISTRATION_FORM_EMAIL' ); ?> *</label>
<?php if ($u_name){
echo '<input type="email" value="'.$u_mail.'" disabled="disabled" />
<input type="hidden" name="email" value="'.$u_mail.'" />';
}else{
echo '<input type="email" name="email" value="" size="30" required="true" class="required validate-email" />';
}?>
<?php } else { ?>
<label><?php echo JText::_( 'ICAGENDA_REGISTRATION_FORM_EMAIL' ); ?></label>
<?php if ($u_name){
echo '<input type="email" value="'.$u_mail.'" disabled="disabled" />
<input type="hidden" name="email" value="'.$u_mail.'" />';
}else{
echo '<input type="email" name="email" value="" size="30" class="required validate-email" />';
}?>
<?php } ?>
<!--span class="formInfo" ><?php echo JHTML::tooltip(JText::_( 'ICAGENDA_REGISTRATION_FORM_EMAIL_DESC' ), JText::_( 'ICAGENDA_REGISTRATION_FORM_EMAIL' ),
JURI::root().'components/com_icagenda/themes/packs/'.$theme.'/images/info.png', '', '', false); ?></span-->
<span class="formInfo">
<a class="ictip"><img src="<?php echo $infoimg; ?>" />
<span>
<span class="title"><?php echo JText::_( 'ICAGENDA_REGISTRATION_FORM_EMAIL' ); ?></span>
<div class="text"><?php echo JText::_( 'ICAGENDA_REGISTRATION_FORM_EMAIL_DESC' ); ?></div>
</span>
</a>
</span>
</div>
<?php if ($item->emailRequired == '1') { ?>
<label><?php echo JText::_( 'ICAGENDA_REGISTRATION_FORM_EMAIL' ); ?> *</label>
echo '<input type="hidden" name="email" value="" size="30" required="true" class="required validate-email" />';
<?php } else { ?>
<label><?php echo JText::_( 'ICAGENDA_REGISTRATION_FORM_EMAIL' ); ?></label>
echo '<input type="hidden" name="email" value="" size="30" class="required validate-email" />';
<?php } ?>
Please Log in or Create an account to join the conversation.