Yeni Üye Giriş Paneli

Started by Hoochie Coochie Man, May 29, 2008, 04:14:11 AM

Previous topic - Next topic

cedrik48

arkadaşlar bunu nasıl RC1.2 sürümüne göre yapabiliriz


cedrik48

berat senin
Quote from: ▌grafitus▐ on June 08, 2008, 06:00:19 AM
Edit:Yaptım  :D
 



Style.css'de en sona ekle:

/* Yeni Üye Giriş Paneli by Hoochie Coochie Man and Powered by YooTheme  */
span.quick span.yoo-login span.login {
height: 20px;
width: 500px;
font-size: 100%;
}

span.quick span.yoo-login span.login .username,
span.quick span.yoo-login span.login .password,
span.quick span.yoo-login span.login .login-button-text,
span.quick span.yoo-login span.login .login-button-icon,
span.quick span.yoo-login span.login .lostpassword,
span.quick span.yoo-login span.login .activatecode,
span.quick span.yoo-login span.login .registration,
span.quick span.yoo-login span.logout .greeting,
span.quick span.yoo-login span.logout .logout-button-text,
span.quick span.yoo-login span.logout .logout-button-icon {
padding-right: 5px;
float: left;
}

span.quick span.yoo-login span.login .username input, span.quick span.yoo-login span.login .password input {
width: 70px;
height: 16px;
padding: 4px 0px 0px 30px;
border: none;
outline: none;
float: left;
color: #646464;
font-size: 75%;
}

span.quick span.yoo-login span.login .username input {
background: url('images/username_bg.png') no-repeat 0 0;
}

span.quick span.yoo-login span.login .password input {
background: url('images/password_bg.png') no-repeat 0 0;
}

span.quick span.yoo-login span.login .username input:hover, span.quick span.yoo-login span.login .username input.sfhover {
background: url('images/username_bg.png') no-repeat 0 -20px;
color: #000000
}

span.quick span.yoo-login span.login .password input:hover, span.quick span.yoo-login span.login .password input.sfhover {
background: url('images/password_bg.png') no-repeat 0 -20px;
color: #000000
}

span.quick span.yoo-login span.login .username input:focus, span.quick span.yoo-login span.login .username input.sffocus {
background: url('images/username_bg.png') no-repeat 0 -20px;
color: #000000
}

span.quick span.yoo-login span.login .password input:focus, span.quick span.yoo-login span.login .password input.sffocus {
background: url('images/password_bg.png') no-repeat 0 -20px;
color: #000000
}

span.quick span.yoo-login span.login .login-button-text button {
margin-top: -1px;
cursor: pointer;
}

span.quick span.yoo-login span.login .login-button-icon button {
display: block;
height: 20px;
width: 21px;
padding: 0px;
border: medium none;
background: url('images/login_button_bg.png') no-repeat 0 0;
cursor: pointer;
overflow: hidden
}

span.quick span.yoo-login span.login .login-button-icon button:hover, span.quick span.yoo-login span.login .login-button-icon button.sfhover  {
background: url('images/login_button_bg.png') no-repeat 0 -20px;
}

span.quick span.yoo-login span.login .lostpassword a, span.quick span.yoo-login span.login .activatecode a, span.quick span.yoo-login span.login .registration a {
display: block;
height: 20px;
width: 25px;
cursor: pointer;
overflow: hidden;
}

span.quick span.yoo-login span.login .lostpassword a  {
background: url('images/lost_password_bg.png') no-repeat 0 0px;
}

span.quick span.yoo-login span.login .activatecode a  {
background: url('images/activatecode.png') no-repeat 0 0px;
}

span.quick span.yoo-login span.login .registration a  {
background: url('images/registration_bg.png') no-repeat 0 0px;
}


index.template.php'de bul:



<form action="', $scripturl, '?action=login2" method="post" accept-charset="', $context['character_set'], '" class="middletext" style="margin: 3px 1ex 1px 0;"', empty($context['disable_login_hashing']) ? ' onsubmit="hashLoginPassword(this, '' . $context['session_id'] . '');"' : '', '>
<input type="text" name="user" size="10" /> <input type="password" name="passwrd" size="10" />
<select name="cookielength">
<option value="60">', $txt['smf53'], '</option>
<option value="1440">', $txt['smf47'], '</option>
<option value="10080">', $txt['smf48'], '</option>
<option value="43200">', $txt['smf49'], '</option>
<option value="-1" selected="selected">', $txt['smf50'], '</option>
</select>
<input type="submit" value="', $txt[34], '" /><br />
<span class="middletext">', $txt['smf52'], '</span>
<input type="hidden" name="hash_passwrd" value="" />
</form>';


Değiştir ;D :


                        <form action="', $scripturl, '?action=login2" method="post" accept-charset="', $context['character_set'], '" class="middletext" style="margin: 3px 1ex 1px 0;"', empty($context['disable_login_hashing']) ? ' onsubmit="hashLoginPassword(this, \'' . $context['session_id'] . '\');"' : '', '>                        <span class="quick" style="display: block;">                        <span class="yoo-login">                           <span class="login">                              <span class="username">                              <input type="text" name="user" size="18" alt="' , $txt['username'] , '" value="' , $txt['username'] , '" onfocus="if(this.value==\'' , $txt['username'] , '\')value=\'\';" onblur="if(this.value==\'\')value=\'' , $txt['username'] , '\';"  />                              </span>                              <span class="password">                              <input type="password" name="passwrd" size="10" value="Password" onfocus="if(this.value==\'Password\')value=\'\';" onblur="if(this.value==\'\')value=\'Password\';" />                              </span>                           <span class="login-button-icon">                              <button value="', $txt['login'], '" name="Submit" type="submit" title="', $txt['login'], '"></button>                           </span>                           <span class="lostpassword">                              <a href="', $scripturl, '?action=reminder" title="' , $txt['password_reminder'] , '"></a>                           </span>                           <span class="activatecode">                           <a href="' . $scripturl . '?action=activate" title="' , $txt['activate_code'] , '"></a>                           </span>                           <span class="registration">                           <a href="', $scripturl, '?action=register" title="' , $txt['register'] , '"></a>                           </span>                           <br /><br />                           <input type="hidden" name="hash_passwrd" value="" />                           </span>                                    </span>                        </span>                        </form>';


OPENId özelliği kayboluyor bunu yapınca....

senin bu dediğin bu kodlar yok birde ben aşağıdaki yeri nasıl yapabilirim böyle

// Show the login bar. (it's only true if they are logged out anyway.)
if ($context['show_login_bar'])
{
echo '
<div class="infocenter_section">
<h4 class="headerpadding titlebg">', $txt['login'], ' <a href="', $scripturl, '?action=reminder" class="smalltext">', $txt['forgot_your_password'], '</a></h4>
<div class="windowbg">
<p class="section">
<a href="', $scripturl,  '?action=login"><img src="', $settings['images_url'], '/icons/login.gif', '" alt="', $txt['login'], '" /></a>
</p>
<div class="windowbg2 sectionbody">
<form id="infocenter_login" action="', $scripturl, '?action=login2" method="post" accept-charset="', $context['character_set'], '">
<ul class="horizlist clearfix">
<li>
<label for="user">', $txt['username'], ':<br />
<input type="text" name="user" id="user" size="15" /></label>
</li>
<li>
<label for="passwrd">', $txt['password'], ':<br />
<input type="password" name="passwrd" id="passwrd" size="15" /></label>
</li>
<li>
<label for="cookielength">', $txt['mins_logged_in'], ':<br />
<input type="text" name="cookielength" id="cookielength" size="4" maxlength="4" value="', $modSettings['cookieTime'], '" /></label>
</li>
<li>
<label for="cookieneverexp">', $txt['always_logged_in'], ':<br />
<input type="checkbox" name="cookieneverexp" id="cookieneverexp" checked="checked" class="check" /></label>
</li>
<li>
<input type="submit" value="', $txt['login'], '" />
</li>
</ul>
</form>
</div>
</div>
</div>';
}
echo '
</div>
</div>';

cedrik48

arakadaşlar yardımedecek kimse yokmu

medyum-buyu

Uzun zamandır yorum yapan yok :)

<a target="_top" href="medyum.org">

Advertisement: