Changeset 5462

Show
Ignore:
Timestamp:
02/29/08 14:16:58 (10 months ago)
Author:
graphittie
Message:
  • refs #828
  • 로그인 이미지 수정. by 교주님네 후배님...의 피드백.
  • 오픈아이디 게스트 로그인 페이지 레이아웃 수정.
Location:
trunk
Files:
6 modified

Legend:

Unmodified
Added
Removed
  • trunk/interface/login/openid/guest/index.php

    r5453 r5462  
    5353                <input type="hidden" name="requestURI" value="<?php echo $requestURI; ?>" /> 
    5454                <input type="hidden" name="need_writers" value="0" /> 
    55                 <div id="data-outbox" class="openid-data-outbox" style="width:810px"> 
     55                <div id="data-outbox"> 
    5656                    <div id="login-box"> 
    5757                        <div id="logo-box"> 
    5858                            <img src="<?php echo $service['path'] ?>/style/admin/whitedream/image/logo_textcube.png" alt="<?php echo _text('텍스트큐브 로고'); ?>" /> 
    59                             <p><b><?php echo _text('텍스트큐브') .' '. _text('오픈아이디 로그인') ?></b></p> 
    6059                        </div> 
    6160                         
    62                         <div id="field-box"> 
     61                        <div class="field-box"> 
     62                            <h1><?php echo _text('오픈아이디 게스트 로그인'); ?></h1> 
     63                             
    6364                            <dl id="email-line"> 
    6465                                <dt><label for="loginid"><?php echo _text('오픈아이디'); ?></label></dt> 
    65  
    6666                                <dd><input type="text" class="input-text openid-identifier-guest-login" id="openid_identifier" name="openid_identifier" value="<?php echo $cookie_openid ?>" maxlength="256" tabindex="1" /></dd> 
     67                            </dl> 
     68                            <dl id="checkbox-line"> 
     69                                <dt><span class="label"><?php echo _text('선택사항');?></span></dt> 
    6770                                <dd><input type="checkbox" class="checkbox" id="openid_remember" name="openid_remember" <?php echo $openid_remember_check ?> /><label for="openid_remember"><?php echo _text('오픈아이디 기억') ?></label></dd> 
    68                                 <dd><input type="submit" class="login-button input-button" name="openid_login" value="<?php echo _text('로그인');?>" /><input type="submit" class="input-button" name="openid_cancel" value="<?php echo _text('취소') ?>" /></dd> 
    69                                 <dd style="margin-top:5px"><a href="<?php echo $openid_help_link ?>"><?php echo _text('오픈아이디란?'); ?></a> | <a href="<?php echo $openid_signup_link; ?>"><?php echo _text('오픈아이디 발급하기');?></a></dd> 
    70                                 <dd><a href="http://www.idtail.com/" style="color: rgb(171, 171, 171);font-size:0.8em" target="_blank" >Technically supported by idtail.com</a></dd> 
    7171                            </dl> 
     72                             
     73                            <div class="button-box"> 
     74                                <input type="submit" class="login-button input-button" name="openid_login" value="<?php echo _text('로그인');?>" /> 
     75                                <input type="submit" class="input-button" name="openid_cancel" value="<?php echo _text('취소') ?>" /> 
     76                            </div> 
     77                             
     78                            <ul> 
     79                                <?php if( !empty( $openid_help_link ) ) { ?> 
     80                                <li id="openid-help"><a href="<?php echo $openid_help_link; ?>" ><?php echo _text('오픈아이디란?') ?></a></li> 
     81                                <?php } ?> 
     82                                <?php if( !empty( $openid_signup_link ) ) { ?> 
     83                                <li><a href="<?php echo $openid_signup_link; ?>"><?php echo _text('오픈아이디 발급하기'); ?></a></li> 
     84                                <?php } ?> 
     85                                <li id="openid-helper"><?php echo sprintf(_text('Technically supported by %s'), '<a href="http://www.idtail.com/">idtail.com</a>');?></li> 
     86                            </ul> 
    7287                        </div> 
    7388                    </div> 
  • trunk/style/admin/whitedream/login.css

    r5461 r5462  
    4040{ 
    4141    display: none; 
     42} 
     43 
     44.field-box ul 
     45{ 
     46    list-style-type: disc; 
     47    margin-top: 10px; 
     48} 
     49 
     50.field-box ul li 
     51{ 
     52    line-height: 1.2em; 
     53    list-style-type: disc; 
     54    margin-left: 20px; 
    4255} 
    4356 
     
    87100} 
    88101 
    89 .login-button 
     102.input-button 
    90103{ 
    91104    background-color                 : #FFFFFF; 
     
    128141    background-color: #fff; 
    129142    background-image: url("../../../image/icon_login_openid.gif"); 
     143    background-position: left center; 
    130144    background-repeat: no-repeat; 
    131145    padding-left                     : 30px; 
    132     width: 180px; 
     146    width: 183px; 
    133147} 
    134148 
     
    144158} 
    145159 
    146 #openid-field-box ul 
     160#openid-helper 
    147161{ 
    148     list-style-type: disc; 
    149     margin-top: 10px; 
     162    font-size: 0.9em; 
     163    list-style-type: none !important; 
     164    margin: 20px 0 0 0; 
     165    text-align: center; 
    150166} 
    151167 
    152 #openid-field-box ul li 
     168#openid-helper a 
    153169{ 
    154     line-height: 1.2em; 
    155     list-style-type: disc; 
    156     margin-left: 20px; 
     170    color: #aaa; 
    157171} 
  • trunk/style/admin/whitedream/login.ie.css

    r5453 r5462  
    88} 
    99 
    10 .login-button 
     10.input-button 
    1111{ 
    1212    height                           : 3em; 
  • trunk/style/admin/whitedream/login.ie7.css

    r5453 r5462  
    33/* Login *****************************************************************************************/ 
    44 
    5 .login-button 
     5.input-button 
    66{ 
    77    height                           : 3em;