-
Notifications
You must be signed in to change notification settings - Fork 0
/
script.js
25 lines (21 loc) · 913 Bytes
/
script.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
document.querySelector("form").addEventListener("submit", function(event) {
event.preventDefault();
const email = document.querySelector("input[name='email']").value;
const password = document.querySelector("input[name='password']").value;
console.log("Email: " + email + " | Parola: " + password);
// Burada, login işlemi için gereken işlemler yapılabilir.
const warningMessage = document.querySelector("input[name='warningMessage']").value;
methods: {
login()
if(this.email === "" || this.password === "") {
this.warningMessage = "Lütfen tüm alanları doldurunuz."
return;
}
this.warningMessage = "";
if (this.email.includes('@')) {
this.warningMessage = "Lütfen geçerli bir email adresi giriniz."
return;
}
}
}
);