هذا المحتوى مقفل. الرجاء تسجيل الدخول لعرضه.
مرحبًا، هذا المحتوى المقفل:
لقفل اي مشاركة استخدم الكود التالي
اسم المستخدم =ABDO
كلمة المرور = AIMO
إضافة مستخدمون= اذهب الي users ثم اصف , { username: "AnotherUser", password: "1234" }
اضف كود المقال في (هذا المحتوى يحتوي على الرقم 9999.)
الشكل:
<!DOCTYPE html>
<html lang="ar">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>المحتوى المقفل</title>
</head>
<body>
<div id="restrictedContent">
<h2>هذا المحتوى مقفل. الرجاء تسجيل الدخول لعرضه.</h2>
<form id="loginForm" onsubmit="checkLogin(); return false;">
<label for="username">اسم المستخدم:</label><br>
<input type="text" id="username" required>
<button type="button" onclick="pasteText('username')">📥لصق</button>
<button type="button" onclick="clearText('username')">❌مسح</button><br>
<label for="password">كلمة المرور:</label><br>
<input type="password" id="password" required>
<button type="button" onclick="pasteText('password')">📥لصق</button>
<button type="button" onclick="togglePasswordVisibility()">👀</button>
<button type="button" onclick="clearText('password')">❌مسح</button><br><br>
<input type="submit" value="🔑تسجيل الدخول">
</form>
</div>
<div id="unrestrictedContent" style="display: none;">
<h2>مرحبًا، ABDO! هذا المحتوى المقفل:</h2>
<p>هذا المحتوى يحتوي على الرقم 9999.</p>
</div>
<script>
function checkLogin() {
var username = document.getElementById("username").value;
var password = document.getElementById("password").value;
// List of username and password pairs
var users = [
{ username: "ABDO", password: "AIMO" },
{ username: "AnotherUser", password: "1234" }
// Add more username and password combinations as needed
];
// Check if the entered username and password match any pair
var validUser = users.some(user => {
return user.username === username && user.password === password;
});
if (validUser) {
document.getElementById("restrictedContent").style.display = "none";
document.getElementById("unrestrictedContent").style.display = "block";
} else {
alert("اسم المستخدم أو كلمة المرور غير صحيحة. الرجاء المحاولة مرة أخرى.");
}
}
function pasteText(inputId) {
navigator.clipboard.readText()
.then(text => {
document.getElementById(inputId).value = text;
})
.catch(err => {
console.error('Failed to read clipboard contents: ', err);
});
}
function clearText(inputId) {
document.getElementById(inputId).value = "";
}
function togglePasswordVisibility() {
var passwordInput = document.getElementById("password");
if (passwordInput.type === "password") {
passwordInput.type = "text";
} else {
passwordInput.type = "password";
}
}
</script>
</body>
</html>
الإبلاغ عن "الرابط لا يعمل" او" أي مشكلة"
لا تنس متبعتنا