37 lines
1.1 KiB
HTML
37 lines
1.1 KiB
HTML
<!DOCTYPE html>
|
|
<html>
|
|
<head>
|
|
<meta charset="utf-8">
|
|
<title>Tambah Pengumuman</title>
|
|
</head>
|
|
<body>
|
|
<form method="post">
|
|
<h3>Tambah Pengumuman</h3>
|
|
|
|
<label for="kategori">Kategori</label>
|
|
<select name="kategori">
|
|
<option value="kategori_1">Kategori 1</option>
|
|
<option value="kategori_2">Kategori 2</option>
|
|
<option value="kategori_3">Kategori 3</option>
|
|
<option value="kategori_4">Kategori 4</option>
|
|
</select>
|
|
|
|
<br>
|
|
|
|
<label for="konten">Konten</label>
|
|
<textarea name="konten" rows="3" cols="30"></textarea>
|
|
|
|
<!-- Current Timestamp -->
|
|
<input type="hidden" name="_currts" value="##CURRENT_TIMESTAMP##">
|
|
|
|
<!-- Method -->
|
|
<input type="hidden" name="_method" value="post">
|
|
|
|
<!-- Token -->
|
|
<input type="hidden" name="_token" value="##TOKEN##">
|
|
|
|
<button type="submit" name="entry">Entry</button>
|
|
</form>
|
|
</body>
|
|
</html>
|