Skip to content

Commit

Permalink
refs #1249
Browse files Browse the repository at this point in the history
  * 로그인시 이메일 입력 키보드가 뜨도록 함
  • Loading branch information
inureyes committed Dec 12, 2009
1 parent 20c0977 commit 79be9f6
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions interface/i/#/index.php
Original file line number Diff line number Diff line change
Expand Up @@ -54,15 +54,15 @@
<?php };?>
<div class="row">
<label for="loginid"><?php echo _text('E-mail');?></label>
<input type="text" class="input-text" id="loginid" name="loginid" value="<?php echo htmlspecialchars(empty($_POST['loginid']) ? (empty($_COOKIE['TSSESSION_LOGINID']) ? '' : $_COOKIE['TSSESSION_LOGINID']) : $_POST['loginid']);?>" maxlength="64" tabindex="1" />
<input type="email" class="input-text" id="loginid" name="loginid" value="<?php echo htmlspecialchars(empty($_POST['loginid']) ? (empty($_COOKIE['TSSESSION_LOGINID']) ? '' : $_COOKIE['TSSESSION_LOGINID']) : $_POST['loginid']);?>" maxlength="64" tabindex="1" />
</div>
<div class="row">
<label for="password"><?php echo _text('비밀번호');?></label>
<input type="password" class="input-text" id="password" name="password" onkeydown="if (event.keyCode == 13) document.forms[0].submit()" maxlength="64" tabindex="2" />
</div>
<div class="row">
<label><?php echo _text('E-mail 저장');?></label>
<div id="emailSave" class="toggle" <?php echo (empty($_COOKIE['TSSESSION_LOGINID']) ? '' : 'toggled="true"');?> onclick="emailSaveToggleCheck(this);"><span class="thumb"></span><span class="toggleOn">ON</span><span class="toggleOff">OFF</span></div>
<div id="emailSave" class="toggle" <?php echo (empty($_COOKIE['TSSESSION_LOGINID']) ? '' : 'toggled="true"');?> onclick="emailSaveToggleCheck(this);"><span class="thumb"></span><span class="toggleOn">|</span><span class="toggleOff">O</span></div>
</div>
</fieldset>
<input type="hidden" id="save" class="checkbox" name="save" />
Expand Down

0 comments on commit 79be9f6

Please # to comment.