-
Notifications
You must be signed in to change notification settings - Fork 0
/
form-ldg.php
98 lines (98 loc) · 3.47 KB
/
form-ldg.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
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
<form role="form">
<div class="row">
<div class="col-md-4">
<legend>Biodata</legend>
<div class="form-group">
<label for="inputEmail1">Email</label>
<input type="email" class="form-control" placeholder="Email">
</div>
<div class="form-group">
<label for="inputPassword1">No Induk Siswa</label>
<input type="text" class="form-control" placeholder="No Induk Siswa">
</div>
<div class="form-group">
<label for="inputPassword1">Nama Lengkap</label>
<input type="text" class="form-control" placeholder="Nama Lengkap">
</div>
<div class="form-group">
<label for="inputPassword1">Tempat Lahir</label>
<input type="text" class="form-control" placeholder="Tempat Lahir">
</div>
<div class="form-group">
<label for="inputPassword1">Tanggal Lahir</label>
<div class="input-group">
<select class="form-control" style="width:auto;">
<?php
for($i=1;$i<=31;$i++)
echo "<option>$i</option>";
?>
</select>
<select class="form-control" style="width:auto;">
<?php
for($m = 1;$m <= 12; $m++){
$month = date("F", mktime(0, 0, 0, $m));
echo "<option value='$m'>$month</option>";
}
?>
</select>
<select class="form-control" style="width:auto;">
<?php
for($year=2008;$year>=1993;$year--)
echo "<option>$year</option>";
?>
</select>
</div>
</div>
<div class="form-group">
<label for="inputPassword1">No Telp</label>
<input type="text" class="form-control" placeholder="No Telp">
</div>
</div>
<div class="col-md-4">
<legend>Sekolah</legend>
<div class="form-group">
<label for="inputEmail1">Asal Sekolah</label>
<input type="text" class="form-control" placeholder="Asal Sekolah">
</div>
<div class="form-group">
<label for="inputEmail1">Alamat Sekolah</label>
<input type="text" class="form-control" placeholder="Alamat Sekolah">
</div>
<div class="form-group">
<label for="inputEmail1">No Telp Sekolah</label>
<input type="text" class="form-control" placeholder="No Telp Sekolah">
</div>
</div>
<div class="col-md-4">
<legend>Pembimbing</legend>
<div class="form-group">
<label for="inputEmail1">NIP Pembimbing</label>
<input type="text" class="form-control" placeholder="NIP Pembimbing">
</div>
<div class="form-group">
<label for="inputEmail1">Nama Pembimbing</label>
<input type="text" class="form-control" placeholder="Nama Pembimbing">
</div>
<div class="form-group">
<label for="inputEmail1">No Telp Pembimbing</label>
<input type="text" class="form-control" placeholder="No Telp Pembimbing">
</div>
</div>
<div class="col-md-8">
<div class="form-group">
<div class="col-lg-10">
<div class="checkbox">
<label>
<input type="checkbox"> Saya yakin dan menerima seluruh ketentuan yang berlaku
</label>
</div>
</div>
</div>
<div class="form-group">
<div class="col-lg-10">
<button type="submit" class="btn btn-default btn-primary">Submit</button>
</div>
</div>
</div>
</div> <!-- /row -->
</form>