Vanilla 1.1.5 is a product of Lussumo. More Information: Documentation, Community Support.
Help keep Vanilla free:<?php
// Note: This file is included from the library/People/People.Control.ApplyForm.php class.
$TermsOfServiceUrl = $this->Context->Configuration['WEB_ROOT'] . 'termsofservice.php';
?>
<div class="About">
<?php echo $this->Context->GetDefinition('AboutMembership'); ?>
<p><a href="<?php echo GetUrl($this->Context->Configuration, $this->Context->SelfUrl); ?>"><?php echo $this->Context->GetDefinition('BackToSignInForm'); ?></a></p>
</div>
<div id="Form" class="ApplyForm">
<fieldset>
<legend><?php echo $this->Context->GetDefinition('MembershipApplicationForm'); ?></legend>
<p><?php echo $this->Context->GetDefinition('AllFieldsRequired'); ?></p>
<?php
$this->CallDelegate('PreWarningsRender');
$this->Render_Warnings();
$this->Render_PostBackForm($this->FormName);
?>
<ul>
<?php $this->CallDelegate('PreInputsRender'); ?>
<li>
<label for="txtEmail"><?php echo $this->Context->GetDefinition('EmailAddress'); ?></label>
<input id="txtEmail" type="text" name="Email" value="<?php echo $this->Applicant->Email; ?>" class="Input" maxlength="160" />
</li>
<li>
<label for="txtUsername"><?php echo $this->Context->GetDefinition('Username'); ?></label>
<input id="txtUsername" type="text" name="Name" value="<?php echo $this->Applicant->Name; ?>" class="Input" maxlength="20" />
</li>
<li>
<label for="txtNewPassword"><?php echo $this->Context->GetDefinition('Password'); ?></label>
<input id="txtNewPassword" type="password" name="NewPassword" value="<?php echo $this->Applicant->NewPassword; ?>" class="Input" />
</li>
<li>
<label for="txtConfirmPassword"><?php echo $this->Context->GetDefinition('PasswordAgain'); ?></label>
<input id="txtConfirmPassword" type="password" name="ConfirmPassword" value="<?php echo $this->Applicant->ConfirmPassword; ?>" class="Input" />
</li><?php
$this->CallDelegate('PostInputsRender');
$this->CallDelegate('PreTermsCheckRender');
?>
<li id="TermsOfServiceCheckBox">
<?php echo GetBasicCheckBox('AgreeToTerms', 1, $this->Applicant->AgreeToTerms,' id="AgreeToTerms"'); ?>
<label for="AgreeToTerms" style="display: inline; float: none; width: auto;"><?php
echo str_replace(
'//1',
' <a href="' . $TermsOfServiceUrl . '" '
. 'onclick="PopTermsOfService(\'' . $TermsOfServiceUrl . '\'); return false;">'
. $this->Context->GetDefinition('TermsOfService') . '</a>',
$this->Context->GetDefinition('IHaveReadAndAgreeTo')
);
?></label>
</li>
</ul>
<div class="Submit">
<input type="submit" name="btnApply" value="<?php echo $this->Context->GetDefinition('Proceed'); ?>" class="Button" />
</div>
</form>
</fieldset>
</div>
1 to 35 of 35