-
-

-
-
Season of AI | Beginner AI Learner
-
Awarded to: hello.rajat.rajput@gmail.com
-
- Issued on: Jul 28, 2024 at
- 1:11 AM
-
-
-
-
-
Share your badge:
-
-
-
-
-
-
-
-
-
+
-
+
-
-
+ const name = document.getElementById('name').value.trim();
+ const email = document.getElementById('email').value.trim();
+ const errorMessage = document.getElementById('error-message');
-
-
+ if (!name || !email) {
+ errorMessage.style.display = 'block';
+ } else {
+ errorMessage.style.display = 'none';
+ alert(`Name: ${name}, Email: ${email}`);
+ // Process the form data as needed (e.g., send to backend or display)
+ }
+ });
+