PATH:
home
/
sparklp6
/
public_html
/
sparklerfilters-org
/
components
/
com_k2
/
templates
<?php /** * @version 2.10.x * @package K2 * @author JoomlaWorks https://www.joomlaworks.net * @copyright Copyright (c) 2006 - 2020 JoomlaWorks Ltd. All rights reserved. * @license GNU/GPL license: https://www.gnu.org/copyleft/gpl.html */ // no direct access defined('_JEXEC') or die; ?> <!-- K2 user register form --> <?php if(isset($this->message)) $this->display('message'); ?> <form action="<?php echo version_compare(JVERSION, '3.0', 'ge') ? JRoute::_('index.php?option=com_users&task=registration.register') : JURI::root(true).'/index.php'; ?>" enctype="multipart/form-data" method="post" id="josForm" name="josForm" class="form-validate"> <?php if($this->params->def('show_page_title',1)): ?> <div class="componentheading<?php echo $this->escape($this->params->get('pageclass_sfx')); ?>"> <?php echo $this->escape($this->params->get('page_title')); ?> </div> <?php endif; ?> <div id="k2Container" class="k2AccountPage"> <table class="admintable" cellpadding="0" cellspacing="0"> <tr> <th colspan="2" class="k2ProfileHeading"> <?php echo JText::_('K2_ACCOUNT_DETAILS'); ?> </th> </tr> <tr> <td class="key"> <label id="namemsg" for="name"><?php echo JText::_('K2_NAME'); ?></label> </td> <td> <input type="text" name="<?php echo $this->nameFieldName; ?>" id="name" size="40" value="<?php echo $this->escape($this->user->get( 'name' )); ?>" class="inputbox required" maxlength="50" /> * </td> </tr> <tr> <td class="key"> <label id="usernamemsg" for="username"><?php echo JText::_('K2_USER_NAME'); ?></label> </td> <td> <input type="text" id="username" name="<?php echo $this->usernameFieldName; ?>" size="40" value="<?php echo $this->escape($this->user->get( 'username' )); ?>" class="inputbox required validate-username" maxlength="25" /> * </td> </tr> <tr> <td class="key"> <label id="emailmsg" for="email"><?php echo JText::_('K2_EMAIL'); ?></label> </td> <td> <input type="text" id="email" name="<?php echo $this->emailFieldName; ?>" size="40" value="<?php echo $this->escape($this->user->get( 'email' )); ?>" class="inputbox required validate-email" maxlength="100" /> * </td> </tr> <?php if(version_compare(JVERSION, '1.6', 'ge')): ?> <tr> <td class="key"> <label id="email2msg" for="email2"><?php echo JText::_('K2_CONFIRM_EMAIL'); ?></label> </td> <td> <input type="text" id="email2" name="jform[email2]" size="40" value="" class="inputbox required validate-email" maxlength="100" /> * </td> </tr> <?php endif; ?> <tr> <td class="key"> <label id="pwmsg" for="password"><?php echo JText::_('K2_PASSWORD'); ?></label> </td> <td> <input class="inputbox required validate-password" type="password" id="password" name="<?php echo $this->passwordFieldName; ?>" size="40" value="" /> * </td> </tr> <tr> <td class="key"> <label id="pw2msg" for="password2"><?php echo JText::_('K2_VERIFY_PASSWORD'); ?></label> </td> <td> <input class="inputbox required validate-passverify" type="password" id="password2" name="<?php echo $this->passwordVerifyFieldName; ?>" size="40" value="" /> * </td> </tr> <tr> <th colspan="2" class="k2ProfileHeading"> <?php echo JText::_('K2_PERSONAL_DETAILS'); ?> </th> </tr> <!-- K2 attached fields --> <tr> <td class="key"> <label id="gendermsg" for="gender"><?php echo JText::_('K2_GENDER'); ?></label> </td> <td> <?php echo $this->lists['gender']; ?> </td> </tr> <tr> <td class="key"> <label id="descriptionmsg" for="description"><?php echo JText::_('K2_DESCRIPTION'); ?></label> </td> <td> <?php echo $this->editor; ?> </td> </tr> <tr> <td class="key"> <label id="imagemsg" for="image"><?php echo JText::_( 'K2_USER_IMAGE_AVATAR' ); ?></label> </td> <td> <input type="file" id="image" name="image" accept="image/*" /> <?php if ($this->K2User->image): ?> <img class="k2AdminImage" src="<?php echo JURI::root().'media/k2/users/'.$this->K2User->image; ?>" alt="<?php echo $this->user->name; ?>" /> <input type="checkbox" name="del_image" id="del_image" /> <label for="del_image"><?php echo JText::_('K2_CHECK_THIS_BOX_TO_DELETE_CURRENT_IMAGE_OR_JUST_UPLOAD_A_NEW_IMAGE_TO_REPLACE_THE_EXISTING_ONE'); ?></label> <?php endif; ?> </td> </tr> <tr> <td class="key"> <label id="urlmsg" for="url"><?php echo JText::_('K2_URL'); ?></label> </td> <td> <input type="text" size="50" value="<?php echo $this->K2User->url; ?>" name="url" id="url" /> </td> </tr> <?php if(count(array_filter($this->K2Plugins))): ?> <!-- K2 Plugin attached fields --> <tr> <th colspan="2" class="k2ProfileHeading"> <?php echo JText::_('K2_ADDITIONAL_DETAILS'); ?> </th> </tr> <?php foreach ($this->K2Plugins as $K2Plugin): ?> <?php if(!is_null($K2Plugin)): ?> <tr> <td colspan="2"> <?php echo $K2Plugin->fields; ?> </td> </tr> <?php endif; ?> <?php endforeach; ?> <?php endif; ?> <!-- Joomla 3.x JForm implementation --> <?php if(isset($this->form)): ?> <?php foreach ($this->form->getFieldsets() as $fieldset): // Iterate through the form fieldsets and display each one.?> <?php if($fieldset->name != 'default'): ?> <?php $fields = $this->form->getFieldset($fieldset->name); ?> <?php if (isset($fields) && count($fields)): ?> <?php if (isset($fieldset->label)): // If the fieldset has a label set, display it as the legend.?> <tr> <th colspan="2" class="k2ProfileHeading"> <?php echo JText::_($fieldset->label); ?> </th> </tr> <?php endif;?> <?php foreach($fields as $field): // Iterate through the fields in the set and display them.?> <?php if ($field->hidden): // If the field is hidden, just display the input.?> <tr> <td colspan="2"><?php echo $field->input;?></td> </tr> <?php else:?> <tr> <td class="key"> <?php echo $field->label; ?> <?php if (!$field->required && $field->type != 'Spacer'): ?> <span class="optional"><?php echo JText::_('COM_USERS_OPTIONAL'); ?></span> <?php endif; ?> </td> <td><?php echo $field->input;?></td> </tr> <?php endif;?> <?php endforeach;?> <?php endif;?> <?php endif; ?> <?php endforeach;?> <?php endif; ?> </table> <?php if($this->K2Params->get('recaptchaOnRegistration') && $this->K2Params->get('recaptcha_public_key')): ?> <?php if(!$this->K2Params->get('recaptchaV2')): ?> <label class="formRecaptcha"><?php echo JText::_('K2_ENTER_THE_TWO_WORDS_YOU_SEE_BELOW'); ?></label> <?php endif; ?> <div id="recaptcha" class="<?php echo $this->recaptchaClass; ?>"></div> <?php endif; ?> <div class="k2AccountPageNotice"><?php echo JText::_('K2_REGISTER_REQUIRED'); ?></div> <div class="k2AccountPageUpdate"> <button class="button validate" type="submit"> <?php echo JText::_('K2_REGISTER'); ?> </button> </div> </div> <input type="hidden" name="option" value="<?php echo $this->optionValue; ?>" /> <input type="hidden" name="task" value="<?php echo $this->taskValue; ?>" /> <input type="hidden" name="id" value="0" /> <input type="hidden" name="gid" value="0" /> <input type="hidden" name="K2UserForm" value="1" /> <?php echo JHTML::_('form.token'); ?> </form>
[+]
default
[-] generic_search.php
[edit]
[-] generic.php
[edit]
[-] register.php
[edit]
[+]
..
[-] profile.php
[edit]