0byt3m1n1
Path:
/
data
/
applications
/
aps.bak
/
concrete5
/
5.6.0.2-2
/
standard
/
htdocs
/
concrete
/
blocks
/
guestbook
/
[
Home
]
File: add.php
<?php defined('C5_EXECUTE') or die("Access Denied."); ?> <div class="clearfix"> <?php echo $form->label('title', t('Title'))?> <div class="input"> <input type="text" name="title" value="" /> </div> </div> <?php if (!$dateFormat) { $dateFormat = t('M jS, Y'); } ?> <div class="clearfix"> <?php echo $form->label('dateFormat', t('Date Format'))?> <div class="input"> <input type="text" name="dateFormat" value="<?php echo $dateFormat?>" /> <div class="help-block">(<?php echo t('Enter a <a href="%s" target="_blank">PHP date string</a> here.', 'http://www.php.net/date')?>)</div> </div> </div> <div class="clearfix"> <?php echo $form->label('displayGuestBookForm', t('Comments enabled.'))?> <div class="input"> <ul class="inputs-list"> <li><label><input type="radio" name="displayGuestBookForm" checked="checked" value="1" /> <span><?php echo t('Yes')?></span></label></li> <li><label><input type="radio" name="displayGuestBookForm" value="0" /> <span><?php echo t('No')?></span></label></li> </ul> </div> </div> <div class="clearfix"> <?php echo $form->label('requireApproval', t('Comments require approval.'))?> <div class="input"> <ul class="inputs-list"> <li><label><input type="radio" name="requireApproval" value="1" /> <span><?php echo t('Yes')?></span></label></li> <li><label><input type="radio" name="requireApproval" value="0" checked="checked" /> <span><?php echo t('No')?></span></label></li> </ul> </div> </div> <div class="clearfix"> <?php echo $form->label('authenticationRequired', t('Authentication required.'))?> <div class="input"> <ul class="inputs-list"> <li><label><input type="radio" name="authenticationRequired" value="0" checked="checked" /> <span><?php echo t('Email Only')?></span></label></li> <li><label><input type="radio" name="authenticationRequired" value="1" /> <span><?php echo t('Users must login')?></span></label></li> </ul> </div> </div> <div class="clearfix"> <?php echo $form->label('displayCaptcha', t('CAPTCHA Required.'))?> <div class="input"> <ul class="inputs-list"> <li><label><input type="radio" name="displayCaptcha" value="1" checked="checked" /> <span><?php echo t('Yes')?></span></label></li> <li><label><input type="radio" name="displayCaptcha" value="0" /> <span><?php echo t('No')?></span></label></li> </ul> </div> </div> <div class="clearfix"> <?php echo $form->label('notifyEmail', t('Notify Email on Comment'))?> <div class="input"> <input type="text" name="notifyEmail" value="" /> </div> </div>