<!DOCTYPE html>
<html lang="bn">
<head>
    <meta charset="UTF-8">
    <title>রেফারেল সিস্টেম অ্যাডমিন</title>
    <style>
        body { font-family: Arial, sans-serif; max-width: 600px; margin: auto; padding: 20px; }
        .form-group { margin-bottom: 15px; }
        .form-group label { display: block; margin-bottom: 5px; }
        .form-group input[type="text"], .form-group input[type="number"] { width: 100%; padding: 8px; box-sizing: border-box; }
        .form-group input[type="checkbox"] { margin-right: 10px; }
        .btn { background-color: #4CAF50; color: white; padding: 10px 15px; border: none; cursor: pointer; }
    </style>
</head>
<body>
    <h1>রেফারেল সিস্টেম সেটিংস</h1>
        <form action="" method="post">
        <div class="form-group">
            <label>
                <input type="checkbox" name="is_active" checked>
                রেফারেল সিস্টেম সক্রিয়
            </label>
        </div>
        <div class="form-group">
            <label for="new_user_bonus">নতুন ইউজার বোনাস (৳)</label>
            <input type="number" id="new_user_bonus" name="new_user_bonus" value="50.00" step="0.01" required>
        </div>
        <div class="form-group">
            <label for="referrer_bonus">রেফারার বোনাস (৳)</label>
            <input type="number" id="referrer_bonus" name="referrer_bonus" value="30.00" step="0.01" required>
        </div>
        <button type="submit" class="btn">সেভ সেটিংস</button>
    </form>
</body>
</html>