Vbulletin Harici Sayfa Oluşturmak

Asi Ruh

Kayıtlı Üye
vBulletin sadece üyelerin görebileceği sayfalar oluşturabilirsiniz.Login,Reklam vB eklentisi vs gibi konularda sayfalarınızı kullanabilirsiniz.

Önce sayfa.php yi oluşturalım.

Kod:
[COLOR=#000000] [COLOR=#0000BB]<?php

[/COLOR][COLOR=#FF8000]// ######################## SET PHP ENVIRONMENT ###########################
[/COLOR][COLOR=#0000BB]error_reporting[/COLOR][COLOR=#007700]([/COLOR][COLOR=#0000BB]E_ALL [/COLOR][COLOR=#007700]& ~[/COLOR][COLOR=#0000BB]E_NOTICE[/COLOR][COLOR=#007700]);

[/COLOR][COLOR=#FF8000]// ##################### DEFINE IMPORTANT CONSTANTS #######################
// change the line below to the actual filename without ".php" extention.
// the reason for using actual filename without extention as a value of this constant is to ensure uniqueness of the value throughout every PHP file of any given vBulletin installation.

[/COLOR][COLOR=#0000BB]define[/COLOR][COLOR=#007700]([/COLOR][COLOR=#DD0000]'THIS_SCRIPT'[/COLOR][COLOR=#007700], [/COLOR][COLOR=#DD0000]'sayfa'[/COLOR][COLOR=#007700]);

[/COLOR][COLOR=#FF8000]// #################### PRE-CACHE TEMPLATES AND DATA ######################
// get special phrase groups
[/COLOR][COLOR=#0000BB]$phrasegroups [/COLOR][COLOR=#007700]= array();

[/COLOR][COLOR=#FF8000]// get special data templates from the datastore
[/COLOR][COLOR=#0000BB]$specialtemplates [/COLOR][COLOR=#007700]= array();

[/COLOR][COLOR=#FF8000]// pre-cache templates used by all actions
[/COLOR][COLOR=#0000BB]$globaltemplates [/COLOR][COLOR=#007700]= array(
[/COLOR][COLOR=#FF8000]// change the lines below to the list of actual templates used in the script
[/COLOR][COLOR=#DD0000]'reklam'[/COLOR][COLOR=#007700],
);

[/COLOR][COLOR=#FF8000]// pre-cache templates used by specific actions
[/COLOR][COLOR=#0000BB]$actiontemplates [/COLOR][COLOR=#007700]= array();

[/COLOR][COLOR=#FF8000]// ########################## REQUIRE BACK-END ############################
[/COLOR][COLOR=#007700]require_once([/COLOR][COLOR=#DD0000]'./global.php'[/COLOR][COLOR=#007700]);

[/COLOR][COLOR=#FF8000]// #################### HARD CODE JAVASCRIPT PATHS ########################
[/COLOR][COLOR=#0000BB]$headinclude [/COLOR][COLOR=#007700]= [/COLOR][COLOR=#0000BB]str_replace[/COLOR][COLOR=#007700]([/COLOR][COLOR=#DD0000]'clientscript'[/COLOR][COLOR=#007700], [/COLOR][COLOR=#0000BB]$vbulletin[/COLOR][COLOR=#007700]->[/COLOR][COLOR=#0000BB]options[/COLOR][COLOR=#007700][[/COLOR][COLOR=#DD0000]'bburl'[/COLOR][COLOR=#007700]] . [/COLOR][COLOR=#DD0000]'/clientscript'[/COLOR][COLOR=#007700], [/COLOR][COLOR=#0000BB]$headinclude[/COLOR][COLOR=#007700]);

[/COLOR][COLOR=#FF8000]// ########################################################################
// ######################### START MAIN SCRIPT ############################
// ########################################################################

[/COLOR][COLOR=#0000BB]$navbits [/COLOR][COLOR=#007700]= array();
[/COLOR][COLOR=#FF8000]// change the line below to contain whatever you want to show in the navbar (title of your custom page)
[/COLOR][COLOR=#0000BB]$navbits[/COLOR][COLOR=#007700][[/COLOR][COLOR=#0000BB]$parent[/COLOR][COLOR=#007700]] = [/COLOR][COLOR=#DD0000]'Reklam Bilgileri'[/COLOR][COLOR=#007700];

[/COLOR][COLOR=#0000BB]$navbits [/COLOR][COLOR=#007700]= [/COLOR][COLOR=#0000BB]construct_navbits[/COLOR][COLOR=#007700]([/COLOR][COLOR=#0000BB]$navbits[/COLOR][COLOR=#007700]);
eval([/COLOR][COLOR=#DD0000]'$navbar = "' [/COLOR][COLOR=#007700]. [/COLOR][COLOR=#0000BB]fetch_template[/COLOR][COLOR=#007700]([/COLOR][COLOR=#DD0000]'navbar'[/COLOR][COLOR=#007700]) . [/COLOR][COLOR=#DD0000]'";'[/COLOR][COLOR=#007700]);

[/COLOR][COLOR=#FF8000]// change the line below to contain the name of the actual main output template used in your script
[/COLOR][COLOR=#007700]eval([/COLOR][COLOR=#DD0000]'print_output("' [/COLOR][COLOR=#007700]. [/COLOR][COLOR=#0000BB]fetch_template[/COLOR][COLOR=#007700]([/COLOR][COLOR=#DD0000]'sayfa'[/COLOR][COLOR=#007700]) . [/COLOR][COLOR=#DD0000]'");'[/COLOR][COLOR=#007700]);[/COLOR] [/COLOR]

('sayfa') yazan yer sayfa adlı template burda Çalışmasını sağlıyor.

Stil yönetimine geliyoruz kullandıgımız stile yeni bir template oluşturuyoruz ve adını sayfa koyuyoruz.Aşağıdaki kodları yazıyoruz.

Kod:
[COLOR=#000000][COLOR=#0000BB]$stylevar[/COLOR][COLOR=#007700][[/COLOR][COLOR=#0000BB]htmldoctype[/COLOR][COLOR=#007700]]
<[/COLOR][COLOR=#0000BB]html dir[/COLOR][COLOR=#007700]=[/COLOR][COLOR=#DD0000]"$stylevar[textdirection]" [/COLOR][COLOR=#0000BB]lang[/COLOR][COLOR=#007700]=[/COLOR][COLOR=#DD0000]"$stylevar[languagecode]"[/COLOR][COLOR=#007700]>
<[/COLOR][COLOR=#0000BB]head[/COLOR][COLOR=#007700]>
[/COLOR][COLOR=#0000BB]$headinclude
[/COLOR][COLOR=#007700]<[/COLOR][COLOR=#0000BB]title[/COLOR][COLOR=#007700]>[/COLOR][COLOR=#0000BB]$vboptions[/COLOR][COLOR=#007700][[/COLOR][COLOR=#0000BB]bbtitle[/COLOR][COLOR=#007700]] [/COLOR][COLOR=#0000BB]Reklam[/COLOR][COLOR=#007700]</[/COLOR][COLOR=#0000BB]title[/COLOR][COLOR=#007700]>
</[/COLOR][COLOR=#0000BB]head[/COLOR][COLOR=#007700]>
<[/COLOR][COLOR=#0000BB]body[/COLOR][COLOR=#007700]>

[/COLOR][COLOR=#0000BB]$header
$navbar

[/COLOR][COLOR=#007700]<[/COLOR][COLOR=#0000BB]table [/COLOR][COLOR=#007700]class=[/COLOR][COLOR=#DD0000]"tborder" [/COLOR][COLOR=#0000BB]cellpadding[/COLOR][COLOR=#007700]=[/COLOR][COLOR=#DD0000]"$stylevar[cellpadding]" [/COLOR][COLOR=#0000BB]cellspacing[/COLOR][COLOR=#007700]=[/COLOR][COLOR=#DD0000]"$stylevar[cellspacing]" [/COLOR][COLOR=#0000BB]border[/COLOR][COLOR=#007700]=[/COLOR][COLOR=#DD0000]"0" [/COLOR][COLOR=#0000BB]width[/COLOR][COLOR=#007700]=[/COLOR][COLOR=#DD0000]"100%"

[/COLOR][COLOR=#0000BB]align[/COLOR][COLOR=#007700]=[/COLOR][COLOR=#DD0000]"center"[/COLOR][COLOR=#007700]>
<[/COLOR][COLOR=#0000BB]table cellpadding[/COLOR][COLOR=#007700]=[/COLOR][COLOR=#DD0000]"0" [/COLOR][COLOR=#0000BB]cellspacing[/COLOR][COLOR=#007700]=[/COLOR][COLOR=#DD0000]"0" [/COLOR][COLOR=#0000BB]border[/COLOR][COLOR=#007700]=[/COLOR][COLOR=#DD0000]"0" [/COLOR][COLOR=#007700]class=[/COLOR][COLOR=#DD0000]"tborder" [/COLOR][COLOR=#0000BB]width[/COLOR][COLOR=#007700]=[/COLOR][COLOR=#DD0000]"100%" [/COLOR][COLOR=#0000BB]align[/COLOR][COLOR=#007700]=[/COLOR][COLOR=#DD0000]"center"[/COLOR][COLOR=#007700]><[/COLOR][COLOR=#0000BB]tr[/COLOR][COLOR=#007700]><[/COLOR][COLOR=#0000BB]td[/COLOR][COLOR=#007700]>
<[/COLOR][COLOR=#0000BB]table cellpadding[/COLOR][COLOR=#007700]=[/COLOR][COLOR=#DD0000]"6" [/COLOR][COLOR=#0000BB]cellspacing[/COLOR][COLOR=#007700]=[/COLOR][COLOR=#DD0000]"1" [/COLOR][COLOR=#0000BB]border[/COLOR][COLOR=#007700]=[/COLOR][COLOR=#DD0000]"0" [/COLOR][COLOR=#0000BB]width[/COLOR][COLOR=#007700]=[/COLOR][COLOR=#DD0000]"100%"[/COLOR][COLOR=#007700]>
<[/COLOR][COLOR=#0000BB]tr[/COLOR][COLOR=#007700]>
<[/COLOR][COLOR=#0000BB]td [/COLOR][COLOR=#007700]class=[/COLOR][COLOR=#DD0000]"tcat"[/COLOR][COLOR=#007700]>[/COLOR][COLOR=#0000BB]SHAL Forum Reklam Bilgileri[/COLOR][COLOR=#007700]</[/COLOR][COLOR=#0000BB]td[/COLOR][COLOR=#007700]>
</[/COLOR][COLOR=#0000BB]tr[/COLOR][COLOR=#007700]>
<[/COLOR][COLOR=#0000BB]tr[/COLOR][COLOR=#007700]>
<[/COLOR][COLOR=#0000BB]table width[/COLOR][COLOR=#007700]=[/COLOR][COLOR=#DD0000]"412" [/COLOR][COLOR=#0000BB]border[/COLOR][COLOR=#007700]=[/COLOR][COLOR=#DD0000]"0" [/COLOR][COLOR=#0000BB]align[/COLOR][COLOR=#007700]=[/COLOR][COLOR=#DD0000]"center" [/COLOR][COLOR=#0000BB]cellpadding[/COLOR][COLOR=#007700]=[/COLOR][COLOR=#DD0000]"0" [/COLOR][COLOR=#0000BB]cellspacing[/COLOR][COLOR=#007700]=[/COLOR][COLOR=#DD0000]"0"[/COLOR][COLOR=#007700]><[/COLOR][COLOR=#0000BB]br[/COLOR][COLOR=#007700]>
<[/COLOR][COLOR=#0000BB]center[/COLOR][COLOR=#007700]>
        <[/COLOR][COLOR=#0000BB]font size[/COLOR][COLOR=#007700]=[/COLOR][COLOR=#DD0000]"2" [/COLOR][COLOR=#0000BB]face[/COLOR][COLOR=#007700]=[/COLOR][COLOR=#DD0000]"tahoma"[/COLOR][COLOR=#007700]>
                        <[/COLOR][COLOR=#0000BB]div align[/COLOR][COLOR=#007700]=[/COLOR][COLOR=#DD0000]"center"[/COLOR][COLOR=#007700]>
                            <[/COLOR][COLOR=#0000BB]font style[/COLOR][COLOR=#007700]=[/COLOR][COLOR=#DD0000]"font-size: 8pt" [/COLOR][COLOR=#0000BB]face[/COLOR][COLOR=#007700]=[/COLOR][COLOR=#DD0000]"Verdana" [/COLOR][COLOR=#0000BB]color[/COLOR][COLOR=#007700]=[/COLOR][COLOR=#DD0000]"#000000"[/COLOR][COLOR=#007700]>
                    [/COLOR][COLOR=#0000BB]Yazınızı veya içeriginizi Buraya Yazın

[/COLOR][COLOR=#007700]</[/COLOR][COLOR=#0000BB]tr[/COLOR][COLOR=#007700]>
</[/COLOR][COLOR=#0000BB]table[/COLOR][COLOR=#007700]><[/COLOR][COLOR=#0000BB]br[/COLOR][COLOR=#007700]><[/COLOR][COLOR=#0000BB]center[/COLOR][COLOR=#007700]><[/COLOR][COLOR=#0000BB]b[/COLOR][COLOR=#007700]>[/COLOR][COLOR=#0000BB]Powered by Shaltr[/COLOR][COLOR=#007700].[/COLOR][COLOR=#0000BB]com[/COLOR][COLOR=#007700]</[/COLOR][COLOR=#0000BB]b[/COLOR][COLOR=#007700]></[/COLOR][COLOR=#0000BB]center[/COLOR][COLOR=#007700]>
<[/COLOR][COLOR=#0000BB]br[/COLOR][COLOR=#007700]><[/COLOR][COLOR=#0000BB]br[/COLOR][COLOR=#007700]>
[/COLOR][COLOR=#0000BB]$footer
[/COLOR][COLOR=#007700]</[/COLOR][COLOR=#0000BB]body[/COLOR][COLOR=#007700]>
</[/COLOR][COLOR=#0000BB]html[/COLOR][COLOR=#007700]>  [/COLOR][/COLOR]

Harici Bir Sayfada Forumdaki Son Konular:

Kod:
[COLOR=#000000] [COLOR=#0000BB]<?
$db_host [/COLOR][COLOR=#007700]= [/COLOR][COLOR=#DD0000]"localhost"[/COLOR][COLOR=#007700]; [/COLOR][COLOR=#FF8000]// Change this if your MySQL database host is different.
[/COLOR][COLOR=#0000BB]$db_name [/COLOR][COLOR=#007700]= [/COLOR][COLOR=#DD0000]"root"[/COLOR][COLOR=#007700]; [/COLOR][COLOR=#FF8000]// Change this to the name of your database.
[/COLOR][COLOR=#0000BB]$db_user [/COLOR][COLOR=#007700]= [/COLOR][COLOR=#DD0000]"forum"[/COLOR][COLOR=#007700]; [/COLOR][COLOR=#FF8000]// Change this to your database username.
[/COLOR][COLOR=#0000BB]$db_pw [/COLOR][COLOR=#007700]= [/COLOR][COLOR=#DD0000]""[/COLOR][COLOR=#007700]; [/COLOR][COLOR=#FF8000]// Change this to your database password.

[/COLOR][COLOR=#0000BB]$forum_url [/COLOR][COLOR=#007700]= [/COLOR][COLOR=#DD0000]"http://forum.shaltr.com"[/COLOR][COLOR=#007700]; [/COLOR][COLOR=#FF8000]// Change this to reflect to your forum's URL.
[/COLOR][COLOR=#0000BB]$forum_id [/COLOR][COLOR=#007700]= [/COLOR][COLOR=#DD0000]""[/COLOR][COLOR=#007700]; [/COLOR][COLOR=#FF8000]// If you wish to display the posts from a specific forum, enter the forum id here. Otherwise, leave it blank.
[/COLOR][COLOR=#0000BB]$limit [/COLOR][COLOR=#007700]= [/COLOR][COLOR=#DD0000]"10"[/COLOR][COLOR=#007700]; [/COLOR][COLOR=#FF8000]// Number of posts displayed.
[/COLOR][COLOR=#0000BB]$titlecolor [/COLOR][COLOR=#007700]= [/COLOR][COLOR=#DD0000]"#FF0000"[/COLOR][COLOR=#007700]; [/COLOR][COLOR=#FF8000]// This is the color of the title.
[/COLOR][COLOR=#0000BB]$postedcolor [/COLOR][COLOR=#007700]= [/COLOR][COLOR=#DD0000]"#FFFFFF"[/COLOR][COLOR=#007700]; [/COLOR][COLOR=#FF8000]// This is the color of the bottom text.
[/COLOR][COLOR=#0000BB]$txtlimit [/COLOR][COLOR=#007700]= [/COLOR][COLOR=#DD0000]"100"[/COLOR][COLOR=#007700]; [/COLOR][COLOR=#FF8000]// This is the character limit.
#######################################

// Connecting to your database
[/COLOR][COLOR=#0000BB]mysql_connect[/COLOR][COLOR=#007700]([/COLOR][COLOR=#0000BB]$db_host[/COLOR][COLOR=#007700], [/COLOR][COLOR=#0000BB]$db_user[/COLOR][COLOR=#007700], [/COLOR][COLOR=#0000BB]$db_pw[/COLOR][COLOR=#007700])
OR die ([/COLOR][COLOR=#DD0000]"Cannot connect to your database"[/COLOR][COLOR=#007700]);
[/COLOR][COLOR=#0000BB]mysql_select_db[/COLOR][COLOR=#007700]([/COLOR][COLOR=#0000BB]$db_name[/COLOR][COLOR=#007700]) OR die([/COLOR][COLOR=#DD0000]"Cannot connect to your database"[/COLOR][COLOR=#007700]);

[/COLOR][COLOR=#FF8000]// Below is the beginning of a table. If you feel you don't need it, you may remove it.
[/COLOR][COLOR=#007700]echo [/COLOR][COLOR=#DD0000]"<table border=\"0\" width=\"100%\" cellspacing=\"0\" cellpadding=\"2\" bgcolor=\"#000000\">"[/COLOR][COLOR=#007700];

if ([/COLOR][COLOR=#0000BB]$forum_id[/COLOR][COLOR=#007700]) {
[/COLOR][COLOR=#0000BB]$forumid [/COLOR][COLOR=#007700]= [/COLOR][COLOR=#DD0000]"AND forumid=$forum_id"[/COLOR][COLOR=#007700];
}

if ([/COLOR][COLOR=#0000BB]$limit[/COLOR][COLOR=#007700]) {
[/COLOR][COLOR=#0000BB]$limited [/COLOR][COLOR=#007700]= [/COLOR][COLOR=#DD0000]"LIMIT $limit"[/COLOR][COLOR=#007700];
}
[/COLOR][COLOR=#0000BB]$thread_sql [/COLOR][COLOR=#007700]= [/COLOR][COLOR=#0000BB]mysql_query[/COLOR][COLOR=#007700]([/COLOR][COLOR=#DD0000]"SELECT threadid,title,lastpost,lastposter FROM thread WHERE visible=1 AND open=1 $forumid ORDER BY lastpost DESC $limited"[/COLOR][COLOR=#007700]);

while([/COLOR][COLOR=#0000BB]$thread_get[/COLOR][COLOR=#007700]=[/COLOR][COLOR=#0000BB]mysql_fetch_array[/COLOR][COLOR=#007700]([/COLOR][COLOR=#0000BB]$thread_sql[/COLOR][COLOR=#007700]))
{
[/COLOR][COLOR=#0000BB]$lastpost [/COLOR][COLOR=#007700]= [/COLOR][COLOR=#0000BB]$thread_get[/COLOR][COLOR=#007700][[/COLOR][COLOR=#DD0000]'lastpost'[/COLOR][COLOR=#007700]];
[/COLOR][COLOR=#0000BB]$poster [/COLOR][COLOR=#007700]= [/COLOR][COLOR=#0000BB]$thread_get[/COLOR][COLOR=#007700][[/COLOR][COLOR=#DD0000]'lastposter'[/COLOR][COLOR=#007700]];
[/COLOR][COLOR=#0000BB]$tid [/COLOR][COLOR=#007700]= [/COLOR][COLOR=#0000BB]$thread_get[/COLOR][COLOR=#007700][[/COLOR][COLOR=#DD0000]'threadid'[/COLOR][COLOR=#007700]];
[/COLOR][COLOR=#0000BB]$psql [/COLOR][COLOR=#007700]= [/COLOR][COLOR=#0000BB]mysql_query[/COLOR][COLOR=#007700]([/COLOR][COLOR=#DD0000]"SELECT postid FROM post WHERE threadid=$tid ORDER BY postid DESC"[/COLOR][COLOR=#007700]);
[/COLOR][COLOR=#0000BB]$getp[/COLOR][COLOR=#007700]=[/COLOR][COLOR=#0000BB]mysql_fetch_array[/COLOR][COLOR=#007700]([/COLOR][COLOR=#0000BB]$psql[/COLOR][COLOR=#007700]);
[/COLOR][COLOR=#0000BB]$pid [/COLOR][COLOR=#007700]= [/COLOR][COLOR=#0000BB]$getp[/COLOR][COLOR=#007700][[/COLOR][COLOR=#DD0000]'postid'[/COLOR][COLOR=#007700]];
[/COLOR][COLOR=#0000BB]$date2 [/COLOR][COLOR=#007700]= [/COLOR][COLOR=#0000BB]date [/COLOR][COLOR=#007700]([/COLOR][COLOR=#DD0000]"m/d/y h:i A" [/COLOR][COLOR=#007700],[/COLOR][COLOR=#0000BB]$lastpost[/COLOR][COLOR=#007700]);
[/COLOR][COLOR=#0000BB]$title [/COLOR][COLOR=#007700]= [/COLOR][COLOR=#0000BB]$thread_get[/COLOR][COLOR=#007700][[/COLOR][COLOR=#DD0000]'title'[/COLOR][COLOR=#007700]];
[/COLOR][COLOR=#0000BB]$title [/COLOR][COLOR=#007700]= [/COLOR][COLOR=#0000BB]substr[/COLOR][COLOR=#007700]([/COLOR][COLOR=#0000BB]$title[/COLOR][COLOR=#007700],[/COLOR][COLOR=#0000BB]0[/COLOR][COLOR=#007700],[/COLOR][COLOR=#0000BB]$txtlimit[/COLOR][COLOR=#007700]);
echo [/COLOR][COLOR=#DD0000]"<tr><td><font size=\"2\" face=\"verdana,arial,geneva\"><a href=\"$forum_url/showthread.php?p=$pid#post$pid\" target=\"_blank\"><FONT SIZE=\"2\" COLOR=\"$titlecolor\" face=\"verdana,arial,geneva\">$title</FONT></a></font><br /><font color=\"$postedcolor\" face=\"verdana,arial,geneva\" size='1'>gönderen: $poster </FONT></td></tr>"[/COLOR][COLOR=#007700];
}
echo [/COLOR][COLOR=#DD0000]"</table>"[/COLOR][COLOR=#007700];
[/COLOR][COLOR=#0000BB]?>[/COLOR] [/COLOR]

Foruma Harici Sayfadan Login olmak için gereken kodlar (ayarlarınızı kendinize göre değiştiriniz)

Kod:
<html>

<head>

<title>TheWORM Web Site Support</title>
</head>

<body>
<table class="tborder" cellSpacing="1" cellPadding="6" width="1" align="center" border="0" height="174">
<tr>
<td class="panelsurround" align="middle" width="396" height="161">
<div class="panel" style="width: 122; height: 195">
<div align="left">
<form action="http://www.vbulletinci.com/login.php" method="post" target="_blank" style="display: inline" onsubmit="md5hash(vb_login_password,vb_login_md5password,vb_ login_md5password_utf)">
<input type="hidden" value="login" name="do">
<input type="hidden" value="1" name="forceredirect">
<input type="hidden" value="http://www.vbulletinci.com/index.php" name="url">
<input type="hidden" name="vb_login_md5password">
<input type="hidden" name="vb_login_md5password_utf">
<input type="hidden" name="s">
<fieldset class="fieldset" style="width: 111; height: 165">
<legend style="color: #22229C; font-style: normal; font-variant: normal; font-weight: normal; font-size: 11px; font-family: tahoma, verdana, geneva, lucida, 'lucida grande', arial, helvetica, sans-serif">
Bağlan</legend>
<table cellSpacing="3" cellPadding="0" align="center" border="0" width="107">
<tr>
<td style="font-size: 11px; font-style: normal; font-variant: normal; font-weight: normal; font-family: verdana, geneva, lucida, 'lucida grande', arial, helvetica, sans-serif" width="164">
Kullanıcı Adı:<br>
<input class="bginput" accessKey="u" tabIndex="1" size="12" name="vb_login_username"></td>
</tr>
<tr>
<td style="font-size: 11px; font-style: normal; font-variant: normal; font-weight: normal; font-family: verdana, geneva, lucida, 'lucida grande', arial, helvetica, sans-serif" width="164">
Şifre:<br>
<input class="bginput" accessKey="p" tabIndex="1" type="password" size="12" value name="vb_login_password"></td>
</tr>
<tr>
<td style="font-size: 11px; font-style: normal; font-variant: normal; font-weight: normal; font-family: verdana, geneva, lucida, 'lucida grande', arial, helvetica, sans-serif" width="164">
<p align="justify"><span style="FLOAT: right">
<a href="http://www.vbulletinci.com/login.php?do=lostpw" style="color: #000020; text-decoration: none">
Şifremi unuttum</a></span>
<label for="cb_cookieuser" style="cursor: default">
<input id="cb_cookieuser" tabIndex="1" type="checkbox" CHECKED value="1" name="cookieuser">Beni
Hatırla?
<div align="center">
<a href="http://www.vbulletinci.com/register.php"><b>Kayıt Ol</b>
</a>
</div>
</label> </td>
</tr>
<tr>
<td align="right" style="font-size: 11px; font-style: normal; font-variant: normal; font-weight: normal; font-family: verdana, geneva, lucida, 'lucida grande', arial, helvetica, sans-serif" width="164">
<input class="button" accessKey="s" tabIndex="1" type="submit" value="Bağlan" style="float: right; border: 1px solid #3E5C92; padding-left: 4; padding-right: 4; padding-top: 1; padding-bottom: 1">
</td>
</tr>
</table>

</fieldset>
</form>
</div>
</div>
</td>
</tr>
</table>
</body>

</html>
 
bayigram takipçi satın al instagram beğeni satın al instagram takipçi satın al tiktok takipçi satın al Buy Followers
vozol
antalya havalimanı transfer
Geri
Üst