buildmart-pro / forgot-password.html
ersinkx's picture
RENK PALETİ:
7d8ea94 verified
<!DOCTYPE html>
<html lang="tr">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>BuildMart Pro - Şifremi Unuttum</title>
<link rel="icon" type="image/x-icon" href="/static/favicon.ico">
<script src="https://cdn.tailwindcss.com"></script>
<script src="https://cdn.jsdelivr.net/npm/feather-icons/dist/feather.min.js"></script>
<link href="https://fonts.googleapis.com/css2?family=Poppins:wght@600;700&family=Inter:wght@400;500&family=Space+Mono&display=swap" rel="stylesheet">
<style>
body {
font-family: 'Inter', sans-serif;
background-color: #F5F6FA;
color: #2D3436;
}
h1, h2, h3 {
font-family: 'Poppins', sans-serif;
}
.numbers {
font-family: 'Space Mono', monospace;
}
.primary-bg { background-color: #2D3436; }
.accent-yellow { color: #F9CA24; }
.card-shadow { box-shadow: 0 2px 8px rgba(0,0,0,0.08); }
.primary-btn {
background-color: #F9CA24;
color: #2D3436;
border-radius: 12px;
padding: 14px 24px;
box-shadow: 0 4px 12px rgba(249, 202, 36, 0.3);
}
.input-field {
background-color: #F5F6FA;
border-radius: 8px;
padding: 14px;
}
.input-field:focus {
border-bottom: 2px solid #F9CA24;
}
</style>
</head>
<body class="bg-gray-100">
<div class="min-h-screen flex items-center justify-center p-4">
<div class="w-full max-w-md bg-white rounded-2xl card-shadow p-6">
<div class="text-center mb-8">
<h1 class="text-2xl font-bold">Şifrenizi mi Unuttunuz?</h1>
<p class="text-gray-500">E-posta adresinize şifre sıfırlama bağlantısı göndereceğiz</p>
</div>
<form>
<div class="mb-6">
<label class="block text-xs text-gray-500 mb-2">E-posta Adresiniz</label>
<div class="relative">
<input type="email" placeholder="[email protected]" class="w-full input-field pl-10">
<i data-feather="mail" class="absolute left-3 top-1/2 transform -translate-y-1/2 text-gray-500"></i>
</div>
</div>
<button type="submit" class="w-full primary-btn mb-6">Sıfırlama Linki Gönder</button>
</form>
<div class="text-center">
<a href="login.html" class="flex items-center justify-center gap-2 text-gray-500">
<i data-feather="arrow-left" class="w-4 h-4"></i>
Giriş ekranına dön
</a>
</div>
</div>
<script>
feather.replace();
</script>
</div>
</body>
</html>