kullanıcı adı ile giriş yapma denemesi.

This commit is contained in:
2026-07-28 05:09:55 +02:00
parent 6e41565074
commit 9d75149a7a
+1 -1
View File
@@ -80,7 +80,7 @@ function renderLogin() {
<div class="bg-slate-900 border border-slate-800 p-8 rounded-2xl shadow-2xl w-full max-w-md">
<h1 class="text-2xl font-bold text-center mb-6">Giriş Yap</h1>
<form id="loginForm" class="space-y-4">
<input type="text" id="identity" placeholder="E-posta" required class="w-full bg-slate-950 border border-slate-800 rounded-xl px-4 py-2 text-white" />
<input type="text" id="identity" placeholder="E-posta / Kullanıcı Adı" required class="w-full bg-slate-950 border border-slate-800 rounded-xl px-4 py-2 text-white" />
<input type="password" id="password" placeholder="Şifre" required class="w-full bg-slate-950 border border-slate-800 rounded-xl px-4 py-2 text-white" />
<button type="submit" class="w-full bg-indigo-600 py-2 rounded-xl text-white font-medium">Giriş</button>
</form>