47 lines
1.5 KiB
HTML
47 lines
1.5 KiB
HTML
<!DOCTYPE html>
|
|
<html>
|
|
<head>
|
|
<meta charset="utf-8">
|
|
<title>Edit Pengumuman</title>
|
|
</head>
|
|
<body>
|
|
<form method="post">
|
|
<h3>Pengumuman 1</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>
|
|
|
|
<label for="konten">Konten: </label>
|
|
<textarea name="konten" rows="8" cols="120"></textarea>
|
|
|
|
<label for="first-approach">Dibuat pada: </label>
|
|
<input type="text" name="first-approach" value="2017-08-28 15:20">
|
|
|
|
<label for="first-touch">Dibuat oleh: </label>
|
|
<input type="text" name="first-touch" value="User 1">
|
|
|
|
<label for="edit">Diubah pada: </label>
|
|
<input type="text" name="edit" value="2017-08-28 15:34">
|
|
|
|
<label for="editor">Diubah oleh: </label>
|
|
<input type="text" name="editor" value="User 2">
|
|
|
|
<!-- Current Timestamp -->
|
|
<input type="hidden" name="_currts" value="##CURRENT_TIMESTAMP##">
|
|
|
|
<!-- Method -->
|
|
<input type="hidden" name="_method" value="put">
|
|
|
|
<!-- Token -->
|
|
<input type="hidden" name="_token" value="##TOKEN##">
|
|
|
|
<button type="submit" name="edit">Edit</button>
|
|
</form>
|
|
</body>
|
|
</html>
|