コード例 #1
0
ファイル: signin.php プロジェクト: joksnet/php-old
?>

<form action="<?php 
echo $config['root'];
?>
signin/" method="post">
  <dl>
    <dt>
      <label for="email"><?php 
_e('EmailAddress');
?>
</label>
      <span class="required">*</span>
    </dt>
    <dd><input type="text" name="email" id="email" tabindex="1" maxlength="70" value="<?php 
eraw($email);
?>
" /></dd>

    <dt>
      <label for="password"><?php 
_e('Password');
?>
</label>
      <span class="required">*</span>
    </dt>
    <dd><input type="password" name="password" id="password" tabindex="2" maxlength="32" /></dd>
  </dl>
  <p>
<?php 
if (isset($_GET['next'])) {
コード例 #2
0
ファイル: ddprojectsaccess.php プロジェクト: joksnet/php-old
    <dd>
      <input type="text" name="email" id="email" maxlength="70" value="<?php 
        eraw($email);
        ?>
" />
    </dd>

    <dt>
      <label for="message"><?php 
        _e('Message');
        ?>
</label>
    </dt>
    <dd>
      <textarea name="message" id="message" rows="2" cols="40"><?php 
        eraw($message);
        ?>
</textarea>
    </dd>
  </dl>
  <p>
    <input type="submit" value="<?php 
        _e('ProjectsAccessAdd');
        ?>
" /> <?php 
        _e('OrCancel', "{$config['root']}dd/projects/");
        ?>
  </p>
</form>

<?php 
コード例 #3
0
ファイル: ddprojectsedit.php プロジェクト: joksnet/php-old
    <dd>
      <input type="text" name="name" id="name" maxlength="40" value="<?php 
        eraw($name);
        ?>
" />
    </dd>

    <dt>
      <label for="description"><?php 
        _e('Description');
        ?>
</label>
    </dt>
    <dd>
      <textarea name="description" id="description" rows="2" cols="40"><?php 
        eraw($description);
        ?>
</textarea>
    </dd>

    <dd class="radio">
      <input type="radio" name="public" id="public" value="1"<?php 
        echo $public ? ' checked="checked"' : '';
        ?>
 />&nbsp;<label for="public"><?php 
        _e('Public');
        ?>
</label>
      <input type="radio" name="public" id="private" value="0"<?php 
        echo !$public ? ' checked="checked"' : '';
        ?>