Admin giriş bilgilerini aşağıda nereye girmeliyim yardım cı olurmusunuz??


 <!--#include file=vt/ayarlar.asp-->
<title>LOGIN</title>
<%
if request.form("kadi")<>"" and request.form("sifre")<>"" then '**** GIRIS ALGILANIYOR VE GIRIS YAPILIYOR...
kadi = Replace(request.form("kadi"), "'", "''")
sifre = Replace(request.form("sifre"), "'", "''")

strsql = "SELECT * FROM [yazarlar] where w_kul_adi='"&kadi&"' and w_sifre='"&sifre&"'"
Set login = Server.CreateObject("ADODB.Recordset")
login.Open strsql, conn, 1, 2
If login.EOF Then
response.write"<pre><strong>HATALI BILGI GIRISI...<br>Lütfen Girdiginiz Bilgileri Tekrar Kontrol Ediniz."
else
Session.Timeout = 80
Session("wid")=login("w_id")
Session("w_kul_adi")=login("w_kul_adi")
Session("w_yetki")=login("w_yetki")
Session("w_ad_soyad")=login("w_ad_soyad")
response.redirect"vt/admin.asp"
end if
end if
%>
<div align="center">
<form action=? method=post>
  <center>
  <table border="1" cellspacing="0" style="border-collapse: collapse" bordercolor="#808080" width="50%" id="AutoNumber1" cellpadding="0" height="61">
    <tr>
      <td width="100%" height="61">
      <div align="center">
        <center>
        <table border="0" cellspacing="0" style="border-collapse: collapse" bordercolor="#111111" width="100%" id="AutoNumber2" cellpadding="0" height="59">
          <tr>
            <td width="100%" bgcolor="#E8E8E8" height="1" colspan="2">&nbsp;</td>
          </tr>
          <tr>
            <td width="100%" height="29" colspan="2" bgcolor="#666666">
            <p align="center">
            <font face="Tahoma" style="font-size: 9pt; font-weight: 700" color="#CCCCCC">
            YAZAR &amp; YÖNETICI GIRIŞ BÖLÜMÜ</font></td>
          </tr>
          <tr>
            <td width="50%" height="33" align="right">
            <font face="Arial" size="2">KULLANICI ADI :</font></td>
            <td width="50%" height="33">&nbsp;&nbsp;
            <input type="text" name="kadi" size="20"></td>
          </tr>
          <tr>
            <td width="50%" height="33" align="right">
            <font face="Arial" size="2">ŞİFRE : </font></td>
            <td width="50%" height="33">&nbsp;&nbsp;
            <input type="password" name="sifre" size="20"></td>
          </tr>
          <tr>
            <td width="100%" height="34" colspan="2" bgcolor="#F8F8F8">
            <p align="center"><input type="submit" value="Gönder" name="gnd"></td>
          </tr>
          <tr>
            <td width="100%" bgcolor="#E8E8E8" height="19" colspan="2">&nbsp;</td>
          </tr>
        </table>
        </center>
      </div>
      </td>
    </tr>
  </table>
  </center>
</div>