Ejemplo n.º 1
0
def girisyap():
    kadi = request.form.get("inp_kadi")
    sifre = request.form.get("inp_sifre")
    query = Kullanici.select().where((Kullanici.kullaniciadi == kadi)).limit(1)
    gelenad = ""
    hash_sifre = ""
    kullaniciad = ""
    for row in query:
        gelenad = row.adsoyad
        hash_sifre = row.sifre
        kullaniciad = row.kullaniciadi
        profilresmi = row.profilresmi
        adsoyad = row.adsoyad
    if gelenad != "" and check_password_hash(hash_sifre, sifre):
        session["kadi"] = kullaniciad
        session["profilresmi"] = profilresmi
        session["adsoyad"] = adsoyad
        return redirect("/")
    else:
        return render_template("index.html",
                               hata="girilen kullanıcı adı veya şifre yanlış")
Ejemplo n.º 2
0
def anasayfa():
    # POST işleminde giriş yap gerçekleşiyor
    if request.method == "POST":
        kadi = request.form.get("inp_email")
        sifre = request.form.get("inp_sifre")
        query = Kullanici.select().where(
            (Kullanici.kullaniciadi == kadi)).limit(1)
        gelenad = ""
        hash_sifre = ""
        kullaniciad = ""
        for row in query:
            gelenad = row.adsoyad
            hash_sifre = row.sifre
            kullaniciad = row.kullaniciadi
        if gelenad != "" and check_password_hash(hash_sifre, sifre):
            session["kadi"] = kullaniciad
            return redirect("tumnotlar")
        else:
            return render_template(
                "index.html", hata="girilen kullanıcı adı veya şifre yanlış")

    return render_template("index.html")
Ejemplo n.º 3
0
def admin():
    if "kadi" in session:
        kullanici = Kullanici.select().where(
            Kullanici.kullaniciadi == session["kadi"]).dicts().get()
        return render_template("bilgilerim.html", kisi=kullanici)