-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.php
More file actions
28 lines (23 loc) · 864 Bytes
/
Copy pathindex.php
File metadata and controls
28 lines (23 loc) · 864 Bytes
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
<!DOCTYPE html>
<html>
<head>
<title><h1>Formulir Buku Tamu</h1></title>
<link rel="stylesheet" href="index.css">
</head>
<body>
<h1>Formulir Buku Tamu</h1>
<form method="post" action="tambah.php">
<label for="id_bukutamu">ID Buku Tamu:</label>
<input type="text" id="id_bukutamu" name="id_bukutamu" required><br><br>
<label for="nama_lengkap">Nama Lengkap:</label>
<input type="text" id="nama_lengkap" name="nama_lengkap" required><br><br>
<label for="email">Email:</label>
<input type="text" id="email" name="email" required><br><br>
<label for="alamat">Alamat:</label>
<input type="text" id="alamat" name="alamat" required><br><br>
<label for="pesan">Pesan:</label>
<input type="text" id="pesan" name="pesan" required><br><br>
<input type="submit" value="Tambahkan"><a href="bukutamu.php">Kembali</a>
</form>
</body>
</html>