-
Notifications
You must be signed in to change notification settings - Fork 1
/
peer.htm
22 lines (20 loc) · 843 Bytes
/
peer.htm
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
<html>
<head>
<title>Peer Database 1</title>
</head>
<body>
<script>
var inputNama = prompt('Input nama anda: ');
var inputTanggal = prompt('Input tanggal lahir: ');
var inputAlamat = prompt('Input alamat lengkap: ');
var inputPendidikan = prompt('Input pedidikan terakhir: ');
var inputPekerjaan = prompt('Input pekerjaan anda: ');
document.write('nama lengkap : ' + inputNama + '<br>')
document.write('tanggal lahir : ' + inputTanggal+ '<br>')
document.write('alamat : ' + inputAlamat+ '<br>')
document.write('pendidikan : ' + inputPendidikan+ '<br>')
document.write('pekerjaan : ' + inputPekerjaan+ '<br>')
alert('data berhasil disimpan.\n terima kasih atas partisipasi anda.' )
</script>
</body>
</html>