-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathreminder.php
executable file
·39 lines (34 loc) · 1.1 KB
/
reminder.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
<?php
include 'header.php';
?>
<link rel="stylesheet" type="type/css" href="register.css">
<div id="ContentKalender">
<div id="container">
<form id="reminder" name="remform" class="rounded" method="post" action="remindersuccess.php">
<img src='images/Register.png' width="300px">
<p>(*) Harus diisi.</p>
<p>Data yang Anda isi akan kami jamin keamanannya.</p>
<div class="field">
<label for="tipe">Tipe*</label>
<select>
<option value="darah">Cuci Darah</option>
<option value="obat">Minum Obat Ace Maxs</option>
<option value="check-up">Medical Check Up</option>
</select>
<span id="tipe"></span>
<p class="hint">Masukkan tipe data reminder.</p>
</div>
<div class="field">
<label for="keterangan">Keterangan</label>
<input type="text" class="input" name="keterangan"
onblur="valKeterangan;valid()">
<span id="user"></span>
<p class="hint">Masukkan keterangan tambahan yang Anda inginkan.</p>
</div>
<input type="submit" class="button" value="Daftar">
</form>
</div>
</div>
<?php
include 'footer.php';
?>