-
Notifications
You must be signed in to change notification settings - Fork 0
/
iletisim.js
41 lines (30 loc) · 1.01 KB
/
iletisim.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
function validateForm() {
var name = document.getElementById('name').value;
var email = document.getElementById('email').value;
var message = document.getElementById('message').value;
var gender = document.querySelector('input[name="gender"]:checked');
if (name.trim() === "") {
alert("Adınız Soyadınız alanı boş bırakılamaz.");
return false;
}
if (gender === null) {
alert("Cinsiyet seçimi yapmalısınız.");
return false;
}
if (email.trim() === "") {
alert("E-posta Adresiniz alanı boş bırakılamaz.");
return false;
}
var emailPattern = /^[a-zA-Z0-9._%+-]+@[a-zA-Z0-9.-]+\.[a-zA-Z]{2,}$/;
if (!emailPattern.test(email)) {
alert("Geçerli bir e-posta adresi giriniz.");
return false;
}
if (message.trim() === "") {
alert("Mesajınız alanı boş bırakılamaz.");
return false;
}
}
function resetForm() {
document.getElementById("iletisimform").reset();
}