-
Notifications
You must be signed in to change notification settings - Fork 0
/
input.php
55 lines (52 loc) · 2.19 KB
/
input.php
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
49
50
51
52
53
54
55
<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>Tambah Data User</title>
<link href="https://cdn.jsdelivr.net/npm/bootstrap@5.3.3/dist/css/bootstrap.min.css" rel="stylesheet">
</head>
<body>
<div class="container mt-3">
<h1>Tambah Data User</h1>
<hr class="mt-0">
<form method="POST" action="proses.php?aksi=tambah" enctype="multipart/form-data">
<!-- Kolom lain... -->
<div class="mb-3">
<label for="nama" class="form-label">Nama</label>
<input type="text" class="form-control" id="nama" name="nama">
</div>
<div class="mb-3">
<label for="alamat" class="form-label">Alamat</label>
<input type="text" class="form-control" id="alamat" name="alamat">
</div>
<div class="mb-3">
<label for="nohp" class="form-label">No HP</label>
<input type="text" class="form-control" id="nohp" name="nohp">
</div>
<div class="mb-3">
<label for="kelas" class="form-label">Kelas</label>
<input type="text" class="form-control" id="kelas" name="kelas">
</div>
<div class="mb-3">
<label for="nim" class="form-label">NIM</label>
<input type="text" class="form-control" id="nim" name="nim">
</div>
<div class="mb-3">
<label for="jenis_kelamin" class="form-label">Jenis Kelamin</label>
<select class="form-control" id="jenis_kelamin" name="jenis_kelamin">
<option value="Laki-laki">Laki-laki</option>
<option value="Perempuan">Perempuan</option>
</select>
</div>
<div class="mb-3">
<label for="foto" class="form-label">Upload Foto</label>
<!-- file gambar yang sudah di upload akan tersimpan dalam database dan pada folder upload... -->
<input type="file" class="form-control" id="foto" name="foto">
</div>
<button type="submit" class="btn btn-primary">Submit</button>
</form>
</div>
<script src="https://cdn.jsdelivr.net/npm/bootstrap@5.3.3/dist/js/bootstrap.bundle.min.js"></script>
</body>
</html>