-
Notifications
You must be signed in to change notification settings - Fork 0
/
neuer-kontakt.html
48 lines (44 loc) · 1.81 KB
/
neuer-kontakt.html
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
42
43
44
45
46
47
48
document.addEventListener('DOMContentLoaded', function() {
const form = document.getElementById('neuer-kontakt-form');
const kontaktAbbrechenBtn = document.getElementById('kontakt-abbrechen-btn');
const neuerKontaktPopup = document.getElementById('neuer-kontakt-popup');
kontaktAbbrechenBtn.addEventListener('click', () => {
closePopup(neuerKontaktPopup);
});
form.addEventListener('submit', function(event) {
event.preventDefault();
const geschlecht = document.getElementById('kontakt-geschlecht').value;
const vorname = document.getElementById('kontakt-vorname').value;
const nachname = document.getElementById('kontakt-nachname').value;
const email = document.getElementById('kontakt-email').value;
const nummer = document.getElementById('kontakt-nummer').value;
const firma = document.getElementById('kontakt-firma').value;
const adresse = document.getElementById('kontakt-adresse').value;
fetch('http://localhost:3000/contacts', {
method: 'POST',
headers: {
'Content-Type': 'application/json',
},
body: JSON.stringify({
geschlecht: geschlecht,
vorname: vorname,
nachname: nachname,
email: email,
nummer: nummer,
firma: firma,
adresse: adresse
}),
})
.then(response => response.json())
.then(data => {
console.log('Success:', data);
alert('Kontakt erfolgreich erstellt!');
closePopup(neuerKontaktPopup);
window.location.href = '/kontakt-datenbank.html';
})
.catch((error) => {
console.error('Error:', error);
alert('Fehler beim Erstellen des Kontakts.');
});
});
});