Example #1
0
	        <div class="lightform grid fullwidth">
	        	<div class="floatleft" style="width:330px">
		        	<div style="">
		            <label for="email" class="sidebyside">Your Email</label>
		    		<input type="email" name="y_email" style="width:170px"<?php 
echo $_SESSION['logged_in'] ? ' value="' . $u_email . '" disabled' : '';
?>
 class="validate[required,custom[email]] sidebyside">

		    		<label for="d_email">Destination Email</label>
		    		<input type="email" name="d_email" style="width:170px" class="validate[required,custom[email]]">
		    		</div>
		    	</div>
	    		<div class="floatright" style="">
	    			<?php 
echo dsp_crypt(0, 1);
?>
	    			
	    			<input type="text" name="captcha" placeholder="captcha" style="width:100px;margin-top:16px;" class="validate[required,custom[onlyLetterNumber]]">
	    		</div>
			</div>
			<br>
			<?php 
if ($_SESSION['logged_in']) {
    ?>
			<input type="hidden" name="y_email" value="<?php 
    echo $u_email;
    ?>
" />
			<?php 
}
Example #2
0
  <input type="text" name="subject" value="<?php 
echo $subject;
?>
" size="50" />
  </label></dd>
  <dt>内容</dt>
  <dd><label>
  <textarea name="body" cols="50" rows="10"><?php 
echo $body;
?>
</textarea>
  </label></dd>
  <dt>確認キーワード</dt>
  <dd class="captcha_view"><label for="" class="clearfix">
      <?php 
dsp_crypt(0, 1);
?>
<br />
      <span>表示されているキーワードをご記入ください。</span><br />
      <input type="text" name="code" />
  </label></dd>
  </dl>
  <p>
  <input type="hidden" name="ticket" value="<?php 
echo $ticket;
?>
" />
  <input type="submit" value="確認画面へ" />
  </p>
</form>
</div>
 /**
  * Draw
  */
 public static function draw()
 {
     dsp_crypt();
 }