Create His face is usedHis face is used #11
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
<
.error {
.عمار عبد السلام اسم المستخدم: الرجاء إدخال اسم مستخدم صالح كلمة المرور: الرجاء إدخال كلمة مرور صالحةcolor: red;
display: none;
}
</style>
تم تسجيل الدخول بنجاح!
<script> // الحصول على العناصر من النموذج var form = document.getElementById("login-form"); var username = document.getElementById("username"); var password = document.getElementById("password"); var submit = document.getElementById("submit"); var success = document.getElementById("success-message"); var usernameError = document.getElementById("username-error"); var passwordError = document.getElementById("password-error");// إضافة مستمع لحدث الإرسال
form.addEventListener("submit", function(event) {
// منع الإرسال الافتراضي
event.preventDefault();
// تحقق من صحة البيانات المدخلة
var valid = true;
// تحقق من اسم المستخدم
if (username.value == "") {
// إظهار رسالة خطأ
usernameError.style.display = "block";
valid = false;
} else {
// إخفاء رسالة خطأ
usernameError.style.display = "none";
}
// تحقق من كلمة المرور
if (password.value == "") {
// إظهار رسالة خطأ
passwordError.style.display = "block";
valid = false;
} else {
// إخفاء رسالة خطأ
passwordError.style.display = "none";
}
// إذا كانت البيانات صالحة
if (valid) {
// إظهار رسالة تأكيد
success.style.display = "block";
// إخفاء النموذج
form.style.display = "none";
}
});
</script>