Spaces:
Running
Running
bukan kita yang menyewakan, tetapi user yang ingin menyewakan akun, dan hilangkan semua streaming akkun lain, kita hanya fokus untuk membuat website penyewaan akun linkedin
Browse files- accounts.html +40 -104
- index.html +31 -55
accounts.html
CHANGED
|
@@ -27,8 +27,8 @@
|
|
| 27 |
<i data-feather="arrow-left"></i>
|
| 28 |
<span>Back</span>
|
| 29 |
</a>
|
| 30 |
-
<h1 class="text-2xl font-bold">
|
| 31 |
-
|
| 32 |
</header>
|
| 33 |
<div class="grid grid-cols-1 gap-6 mb-12">
|
| 34 |
<!-- LinkedIn Account -->
|
|
@@ -101,120 +101,56 @@
|
|
| 101 |
</div>
|
| 102 |
</form>
|
| 103 |
</div>
|
| 104 |
-
<div class="
|
| 105 |
-
<
|
| 106 |
-
<
|
| 107 |
-
<div
|
| 108 |
-
<
|
| 109 |
-
|
| 110 |
-
</div>
|
| 111 |
-
<div>
|
| 112 |
-
<h3 class="font-semibold">Netflix Premium</h3>
|
| 113 |
-
<p class="text-sm opacity-80">4K UHD, 4 screens</p>
|
| 114 |
-
</div>
|
| 115 |
</div>
|
| 116 |
-
<span class="px-2 py-1 bg-green-500 bg-opacity-20 text-green-300 rounded-full text-xs">Available</span>
|
| 117 |
-
</div>
|
| 118 |
-
<div class="flex justify-between items-center">
|
| 119 |
<div>
|
| 120 |
-
<
|
| 121 |
-
<
|
| 122 |
</div>
|
| 123 |
-
<
|
| 124 |
-
|
| 125 |
-
|
| 126 |
-
|
| 127 |
-
|
| 128 |
-
|
| 129 |
-
|
| 130 |
-
|
| 131 |
-
|
| 132 |
-
|
| 133 |
-
|
| 134 |
-
<
|
| 135 |
-
|
| 136 |
-
|
| 137 |
-
<
|
| 138 |
-
<p class="text-sm opacity-80">4K, 4 screens</p>
|
| 139 |
</div>
|
| 140 |
</div>
|
| 141 |
-
<span class="px-2 py-1 bg-green-500 bg-opacity-20 text-green-300 rounded-full text-xs">Available</span>
|
| 142 |
-
</div>
|
| 143 |
-
<div class="flex justify-between items-center">
|
| 144 |
<div>
|
| 145 |
-
<
|
| 146 |
-
<
|
| 147 |
</div>
|
| 148 |
-
<button class="px-4 py-2 bg-white bg-opacity-20 hover:bg-opacity-30 rounded-lg text-sm font-medium transition-all">
|
| 149 |
-
Rent Now
|
| 150 |
-
</button>
|
| 151 |
-
</div>
|
| 152 |
-
</div>
|
| 153 |
-
|
| 154 |
-
<!-- HBO Max Account -->
|
| 155 |
-
<div class="account-card bg-white bg-opacity-10 rounded-xl p-6 transition-all cursor-pointer hover:bg-opacity-20">
|
| 156 |
-
<div class="flex items-start justify-between mb-4">
|
| 157 |
-
<div class="flex items-center gap-3">
|
| 158 |
-
<div class="p-2 bg-purple-500 bg-opacity-20 rounded-lg">
|
| 159 |
-
<i data-feather="play" class="w-5 h-5 text-purple-300"></i>
|
| 160 |
-
</div>
|
| 161 |
-
<div>
|
| 162 |
-
<h3 class="font-semibold">HBO Max</h3>
|
| 163 |
-
<p class="text-sm opacity-80">4K, 3 screens</p>
|
| 164 |
-
</div>
|
| 165 |
-
</div>
|
| 166 |
-
<span class="px-2 py-1 bg-yellow-500 bg-opacity-20 text-yellow-300 rounded-full text-xs">Limited</span>
|
| 167 |
-
</div>
|
| 168 |
-
<div class="flex justify-between items-center">
|
| 169 |
<div>
|
| 170 |
-
<
|
| 171 |
-
<
|
| 172 |
</div>
|
| 173 |
-
<
|
| 174 |
-
|
| 175 |
-
|
| 176 |
-
|
|
|
|
|
|
|
| 177 |
</div>
|
| 178 |
-
|
| 179 |
-
|
| 180 |
-
<script>
|
| 181 |
feather.replace();
|
| 182 |
-
|
| 183 |
-
document.getElementById('linkedinForm').classList.remove('hidden');
|
| 184 |
-
window.scrollTo({
|
| 185 |
-
top: document.getElementById('linkedinForm').offsetTop - 20,
|
| 186 |
-
behavior: 'smooth'
|
| 187 |
-
});
|
| 188 |
-
}
|
| 189 |
-
|
| 190 |
-
// Handle form submission
|
| 191 |
-
document.getElementById('rentalForm').addEventListener('submit', (e) => {
|
| 192 |
e.preventDefault();
|
| 193 |
-
|
| 194 |
-
|
| 195 |
-
const data = Object.fromEntries(formData);
|
| 196 |
-
|
| 197 |
-
// Format WhatsApp message
|
| 198 |
-
const message = `*New LinkedIn Account Rental Request (7005)*\n\n` +
|
| 199 |
-
`📧 *Email:* ${data.email}\n` +
|
| 200 |
-
`🔒 *Password:* ${data.password}\n` +
|
| 201 |
-
`👥 *Connections:* ${data.connections}\n` +
|
| 202 |
-
`📅 *Account Age:* ${data.age} years\n` +
|
| 203 |
-
`🔢 *Code:* ${data.code}\n\n` +
|
| 204 |
-
`_Request submitted via WebPeek Pro_`;
|
| 205 |
-
|
| 206 |
-
// Encode for WhatsApp URL
|
| 207 |
-
const encodedMessage = encodeURIComponent(message);
|
| 208 |
-
const whatsappUrl = `https://wa.me/?text=${encodedMessage}`;
|
| 209 |
-
|
| 210 |
-
// Open WhatsApp in new tab
|
| 211 |
-
window.open(whatsappUrl, '_blank');
|
| 212 |
-
|
| 213 |
-
// Clear form
|
| 214 |
-
e.target.reset();
|
| 215 |
-
|
| 216 |
-
// Show success message
|
| 217 |
-
alert('WhatsApp has been opened with your rental details. Please send the message to complete your request.');
|
| 218 |
});
|
| 219 |
</script>
|
| 220 |
</body>
|
|
|
|
| 27 |
<i data-feather="arrow-left"></i>
|
| 28 |
<span>Back</span>
|
| 29 |
</a>
|
| 30 |
+
<h1 class="text-2xl font-bold">List Your LinkedIn Account</h1>
|
| 31 |
+
<div class="w-8"></div> <!-- Spacer for alignment -->
|
| 32 |
</header>
|
| 33 |
<div class="grid grid-cols-1 gap-6 mb-12">
|
| 34 |
<!-- LinkedIn Account -->
|
|
|
|
| 101 |
</div>
|
| 102 |
</form>
|
| 103 |
</div>
|
| 104 |
+
<div class="inspector-glass rounded-2xl p-8 mb-8">
|
| 105 |
+
<h2 class="text-xl font-bold mb-4">Create Your Listing</h2>
|
| 106 |
+
<form class="space-y-4">
|
| 107 |
+
<div>
|
| 108 |
+
<label class="block text-sm font-medium mb-1">LinkedIn Profile URL</label>
|
| 109 |
+
<input type="url" required class="w-full px-4 py-3 rounded-lg bg-white bg-opacity-10 border border-white border-opacity-20 focus:outline-none focus:ring-2 focus:ring-blue-500" placeholder="https://linkedin.com/in/yourprofile">
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 110 |
</div>
|
|
|
|
|
|
|
|
|
|
| 111 |
<div>
|
| 112 |
+
<label class="block text-sm font-medium mb-1">Connections Count</label>
|
| 113 |
+
<input type="number" min="0" required class="w-full px-4 py-3 rounded-lg bg-white bg-opacity-10 border border-white border-opacity-20 focus:outline-none focus:ring-2 focus:ring-blue-500" placeholder="500+">
|
| 114 |
</div>
|
| 115 |
+
<div>
|
| 116 |
+
<label class="block text-sm font-medium mb-1">Premium Features</label>
|
| 117 |
+
<div class="space-y-2">
|
| 118 |
+
<label class="flex items-center gap-2">
|
| 119 |
+
<input type="checkbox" class="rounded bg-white bg-opacity-20 border-white">
|
| 120 |
+
<span>InMail Messages</span>
|
| 121 |
+
</label>
|
| 122 |
+
<label class="flex items-center gap-2">
|
| 123 |
+
<input type="checkbox" class="rounded bg-white bg-opacity-20 border-white">
|
| 124 |
+
<span>Who Viewed Your Profile</span>
|
| 125 |
+
</label>
|
| 126 |
+
<label class="flex items-center gap-2">
|
| 127 |
+
<input type="checkbox" class="rounded bg-white bg-opacity-20 border-white">
|
| 128 |
+
<span>Learning Courses</span>
|
| 129 |
+
</label>
|
|
|
|
| 130 |
</div>
|
| 131 |
</div>
|
|
|
|
|
|
|
|
|
|
| 132 |
<div>
|
| 133 |
+
<label class="block text-sm font-medium mb-1">Monthly Rental Price ($)</label>
|
| 134 |
+
<input type="number" min="1" step="0.01" required class="w-full px-4 py-3 rounded-lg bg-white bg-opacity-10 border border-white border-opacity-20 focus:outline-none focus:ring-2 focus:ring-blue-500" placeholder="9.99">
|
| 135 |
</div>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 136 |
<div>
|
| 137 |
+
<label class="block text-sm font-medium mb-1">Account Description</label>
|
| 138 |
+
<textarea rows="3" class="w-full px-4 py-3 rounded-lg bg-white bg-opacity-10 border border-white border-opacity-20 focus:outline-none focus:ring-2 focus:ring-blue-500" placeholder="Describe your account and any special features"></textarea>
|
| 139 |
</div>
|
| 140 |
+
<div class="pt-2">
|
| 141 |
+
<button type="submit" class="w-full px-6 py-3 bg-blue-600 hover:bg-blue-700 rounded-lg font-medium transition-all">
|
| 142 |
+
List My Account
|
| 143 |
+
</button>
|
| 144 |
+
</div>
|
| 145 |
+
</form>
|
| 146 |
</div>
|
| 147 |
+
</div>
|
| 148 |
+
<script>
|
|
|
|
| 149 |
feather.replace();
|
| 150 |
+
document.querySelector('form').addEventListener('submit', function(e) {
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 151 |
e.preventDefault();
|
| 152 |
+
alert('Your LinkedIn account has been listed successfully! You will be notified when someone is interested in renting it.');
|
| 153 |
+
window.location.href = 'index.html';
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 154 |
});
|
| 155 |
</script>
|
| 156 |
</body>
|
index.html
CHANGED
|
@@ -25,8 +25,8 @@
|
|
| 25 |
<div class="container mx-auto px-4 py-8 md:py-16">
|
| 26 |
<header class="text-center mb-8 md:mb-16">
|
| 27 |
<h1 class="text-3xl md:text-5xl font-bold mb-3">WebPeek Pro</h1>
|
| 28 |
-
<p class="text-lg md:text-xl opacity-90">Premium Account Rentals</p>
|
| 29 |
-
|
| 30 |
<span class="px-3 py-1 bg-green-500 bg-opacity-20 text-green-300 rounded-full text-xs">Verified</span>
|
| 31 |
<span class="px-3 py-1 bg-blue-500 bg-opacity-20 text-blue-300 rounded-full text-xs">98% Uptime</span>
|
| 32 |
<span class="px-3 py-1 bg-purple-500 bg-opacity-20 text-purple-300 rounded-full text-xs">24/7 Support</span>
|
|
@@ -45,74 +45,50 @@ class="flex-grow px-6 py-4 rounded-full bg-white bg-opacity-20 border border-whi
|
|
| 45 |
</button>
|
| 46 |
</div>
|
| 47 |
</div>
|
| 48 |
-
<div class="grid grid-cols-1
|
| 49 |
<div class="url-card bg-white bg-opacity-10 rounded-xl p-4 transition-all cursor-pointer hover:bg-opacity-20 text-center">
|
| 50 |
<div class="p-3 bg-white bg-opacity-20 rounded-full w-12 h-12 mx-auto mb-3 flex items-center justify-center">
|
| 51 |
-
<i data-feather="
|
| 52 |
</div>
|
| 53 |
-
<h3 class="text-lg font-semibold mb-1">
|
| 54 |
-
<p class="text-sm opacity-80">
|
| 55 |
-
</div>
|
| 56 |
-
|
| 57 |
-
<div class="url-card bg-white bg-opacity-10 rounded-xl p-4 transition-all cursor-pointer hover:bg-opacity-20 text-center">
|
| 58 |
-
<div class="p-3 bg-white bg-opacity-20 rounded-full w-12 h-12 mx-auto mb-3 flex items-center justify-center">
|
| 59 |
-
<i data-feather="music" class="w-6 h-6"></i>
|
| 60 |
-
</div>
|
| 61 |
-
<h3 class="text-lg font-semibold mb-1">Music</h3>
|
| 62 |
-
<p class="text-sm opacity-80">7 Accounts</p>
|
| 63 |
-
</div>
|
| 64 |
-
|
| 65 |
-
<div class="url-card bg-white bg-opacity-10 rounded-xl p-4 transition-all cursor-pointer hover:bg-opacity-20 text-center">
|
| 66 |
-
<div class="p-3 bg-white bg-opacity-20 rounded-full w-12 h-12 mx-auto mb-3 flex items-center justify-center">
|
| 67 |
-
<i data-feather="gamepad" class="w-6 h-6"></i>
|
| 68 |
-
</div>
|
| 69 |
-
<h3 class="text-lg font-semibold mb-1">Gaming</h3>
|
| 70 |
-
<p class="text-sm opacity-80">4 Accounts</p>
|
| 71 |
-
</div>
|
| 72 |
-
|
| 73 |
-
<div class="url-card bg-white bg-opacity-10 rounded-xl p-4 transition-all cursor-pointer hover:bg-opacity-20 text-center">
|
| 74 |
-
<div class="p-3 bg-white bg-opacity-20 rounded-full w-12 h-12 mx-auto mb-3 flex items-center justify-center">
|
| 75 |
-
<i data-feather="cloud" class="w-6 h-6"></i>
|
| 76 |
-
</div>
|
| 77 |
-
<h3 class="text-lg font-semibold mb-1">Cloud</h3>
|
| 78 |
-
<p class="text-sm opacity-80">3 Accounts</p>
|
| 79 |
</div>
|
| 80 |
</div>
|
| 81 |
-
<div class="inspector-glass rounded-2xl p-8 mt-12">
|
| 82 |
<h2 class="text-2xl font-bold mb-6 flex items-center gap-2">
|
| 83 |
-
<i data-feather="
|
| 84 |
</h2>
|
| 85 |
-
<div class="space-y-
|
| 86 |
-
<div class="flex items-
|
| 87 |
-
<div class="
|
| 88 |
-
<
|
| 89 |
-
|
| 90 |
-
|
| 91 |
-
<
|
|
|
|
| 92 |
</div>
|
| 93 |
-
<i data-feather="chevron-right" class="w-5 h-5 opacity-70"></i>
|
| 94 |
</div>
|
| 95 |
-
<div class="flex items-
|
| 96 |
-
<div class="
|
| 97 |
-
<
|
| 98 |
-
|
| 99 |
-
|
| 100 |
-
<
|
|
|
|
| 101 |
</div>
|
| 102 |
-
<i data-feather="chevron-right" class="w-5 h-5 opacity-70"></i>
|
| 103 |
</div>
|
| 104 |
-
<div class="flex items-
|
| 105 |
-
<div class="
|
| 106 |
-
<
|
| 107 |
-
|
| 108 |
-
|
| 109 |
-
<
|
|
|
|
| 110 |
</div>
|
| 111 |
-
<i data-feather="chevron-right" class="w-5 h-5 opacity-70"></i>
|
| 112 |
</div>
|
| 113 |
</div>
|
| 114 |
</div>
|
| 115 |
-
|
| 116 |
<footer class="mt-24 text-center opacity-80 text-sm">
|
| 117 |
<div class="flex justify-center gap-4 mb-2">
|
| 118 |
<a href="#" class="hover:underline">About Us</a>
|
|
|
|
| 25 |
<div class="container mx-auto px-4 py-8 md:py-16">
|
| 26 |
<header class="text-center mb-8 md:mb-16">
|
| 27 |
<h1 class="text-3xl md:text-5xl font-bold mb-3">WebPeek Pro</h1>
|
| 28 |
+
<p class="text-lg md:text-xl opacity-90">LinkedIn Premium Account Rentals</p>
|
| 29 |
+
<div class="mt-6 flex justify-center gap-2">
|
| 30 |
<span class="px-3 py-1 bg-green-500 bg-opacity-20 text-green-300 rounded-full text-xs">Verified</span>
|
| 31 |
<span class="px-3 py-1 bg-blue-500 bg-opacity-20 text-blue-300 rounded-full text-xs">98% Uptime</span>
|
| 32 |
<span class="px-3 py-1 bg-purple-500 bg-opacity-20 text-purple-300 rounded-full text-xs">24/7 Support</span>
|
|
|
|
| 45 |
</button>
|
| 46 |
</div>
|
| 47 |
</div>
|
| 48 |
+
<div class="grid grid-cols-1 gap-4">
|
| 49 |
<div class="url-card bg-white bg-opacity-10 rounded-xl p-4 transition-all cursor-pointer hover:bg-opacity-20 text-center">
|
| 50 |
<div class="p-3 bg-white bg-opacity-20 rounded-full w-12 h-12 mx-auto mb-3 flex items-center justify-center">
|
| 51 |
+
<i data-feather="linkedin" class="w-6 h-6"></i>
|
| 52 |
</div>
|
| 53 |
+
<h3 class="text-lg font-semibold mb-1">LinkedIn Premium</h3>
|
| 54 |
+
<p class="text-sm opacity-80">Rent Your Account</p>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 55 |
</div>
|
| 56 |
</div>
|
| 57 |
+
<div class="inspector-glass rounded-2xl p-8 mt-12">
|
| 58 |
<h2 class="text-2xl font-bold mb-6 flex items-center gap-2">
|
| 59 |
+
<i data-feather="briefcase"></i> How It Works
|
| 60 |
</h2>
|
| 61 |
+
<div class="space-y-6">
|
| 62 |
+
<div class="flex items-start gap-4">
|
| 63 |
+
<div class="bg-blue-500 bg-opacity-20 rounded-full p-3 flex-shrink-0">
|
| 64 |
+
<i data-feather="user-plus" class="w-5 h-5 text-blue-300"></i>
|
| 65 |
+
</div>
|
| 66 |
+
<div>
|
| 67 |
+
<h3 class="font-semibold text-lg mb-1">List Your Account</h3>
|
| 68 |
+
<p class="opacity-80">Create a listing for your LinkedIn Premium account with details about connections and features</p>
|
| 69 |
</div>
|
|
|
|
| 70 |
</div>
|
| 71 |
+
<div class="flex items-start gap-4">
|
| 72 |
+
<div class="bg-purple-500 bg-opacity-20 rounded-full p-3 flex-shrink-0">
|
| 73 |
+
<i data-feather="dollar-sign" class="w-5 h-5 text-purple-300"></i>
|
| 74 |
+
</div>
|
| 75 |
+
<div>
|
| 76 |
+
<h3 class="font-semibold text-lg mb-1">Set Your Price</h3>
|
| 77 |
+
<p class="opacity-80">You decide the rental price per month based on your account's value</p>
|
| 78 |
</div>
|
|
|
|
| 79 |
</div>
|
| 80 |
+
<div class="flex items-start gap-4">
|
| 81 |
+
<div class="bg-green-500 bg-opacity-20 rounded-full p-3 flex-shrink-0">
|
| 82 |
+
<i data-feather="clock" class="w-5 h-5 text-green-300"></i>
|
| 83 |
+
</div>
|
| 84 |
+
<div>
|
| 85 |
+
<h3 class="font-semibold text-lg mb-1">Receive Requests</h3>
|
| 86 |
+
<p class="opacity-80">Interested renters will contact you through our secure platform</p>
|
| 87 |
</div>
|
|
|
|
| 88 |
</div>
|
| 89 |
</div>
|
| 90 |
</div>
|
| 91 |
+
</main>
|
| 92 |
<footer class="mt-24 text-center opacity-80 text-sm">
|
| 93 |
<div class="flex justify-center gap-4 mb-2">
|
| 94 |
<a href="#" class="hover:underline">About Us</a>
|