-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathform.php
137 lines (113 loc) · 5.64 KB
/
form.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
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
<!doctype html>
<html lang="en">
<head>
<!-- Required meta tags -->
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<!-- Bootstrap CSS -->
<link href="https://cdn.jsdelivr.net/npm/[email protected]/dist/css/bootstrap.min.css" rel="stylesheet"
integrity="sha384-EVSTQN3/azprG1Anm3QDgpJLIm9Nao0Yz1ztcQTwFspd3yD65VohhpuuCOmLASjC" crossorigin="anonymous">
<!-- My CSS -->
<link rel="stylesheet" type="text/css" href="css2.css">
<!-- My Icons -->
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/[email protected]/font/bootstrap-icons.css">
<!-- Animate CSS -->
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/animate.css/4.1.1/animate.min.css" />
<title>Formulir Pendaftaran</title>
</head>
<body>
<!-- FORM -->
<div class="container">
<div class="text-center mb-3 animate__animated animate__jello">
<h1>Formulir Pendaftaran</h1>
<img src="img/readinggirl.png" class="img-fluid" max-width=100%; width="250px" height=auto;>
</div>
<form action="" method="POST">
<div class="form-group mb-3">
<div class="input-group">
<input type="text" name="" class="form-control" placeholder="Nama Lengkap" required>
</div>
</div>
<div class="row mb-3">
<div class="col-md-6">
<input type="text" name="" class="form-control" placeholder="Tempat Lahir" required>
</div>
<div class="col-md-6">
<input type="date" name="" class="form-control" placeholder="Tanggal Lahir" required>
</div>
</div>
<div class="form-group mb-3">
<div class="input-group">
<textarea class="form-control" rows="3" placeholder="Alamat" required></textarea>
</div>
</div>
<div class="row mb-3">
<div class="col-md-6">
<input type="text" name="" class="form-control" placeholder="Email" required>
</div>
<div class="col-md-6">
<input type="text" name="" class="form-control" placeholder="No. Telp" required>
</div>
</div>
<div class="row mb-3">
<div class="col-md-6">
<div class="form-check-inline">
<input class="form-check-input" type="radio" name="jeniskelamin" id="jeniskelamin"
value="Laki-laki" checked="">
<label class="form-check-label" for="jeniskelamin">
Laki-laki
</label>
</div>
<div class="form-check-inline">
<input class="form-check-input" type="radio" name="jeniskelamin" id="jeniskelamin"
value="Perempuan">
<label class="form-check-label" for="jeniskelamin">
Perempuan
</label>
</div>
</div>
<div class="col-md-6">
<select class="form-select" aria-label="Default select example" required="true">
<option value="">Jenjang Pendidikan</option>
<option value="SD">SD</option>
<option value="SMP">SMP</option>
<option value="SMP">SMA/SMK</option>
<option value="SMP">Umum</option>
</select>
</div>
</div>
<div class="form-group mb-3">
<select class="form-select" aria-label="Default select example" required="true">
<option value="">Kursus Bahasa Yang Diambil</option>
<option value="Bahasa Inggris">Bahasa Inggris</option>
<option value="Bahasa Jepang">Bahasa Jepang</option>
<option value="Bahasa Korea">Bahasa Korea</option>
<option value="Bahasa China">Bahasa Mandarin</option>
<option value="Bahasa Prancis">Bahasa Perancis</option>
<option value="Bahasa Jerman">Bahasa Jerman</option>
<option value="Bahasa Rusia">Bahasa Rusia</option>
</select>
</div>
<div class="row mb-3">
<div class="col-md-6">
<button type="submit" class="btn btn-primary">Daftar</button>
</div>
<div class="col-md-6">
<button type="reset" class="btn btn-danger">Reset</button>
</div>
</div>
</form>
</div>
<!-- AKHIR FORM -->
<!-- Optional JavaScript; choose one of the two! -->
<!-- Option 1: Bootstrap Bundle with Popper -->
<script src="https://cdn.jsdelivr.net/npm/[email protected]/dist/js/bootstrap.bundle.min.js"
integrity="sha384-MrcW6ZMFYlzcLA8Nl+NtUVF0sA7MsXsP1UyJoMp4YLEuNSfAP+JcXn/tWtIaxVXM" crossorigin="anonymous">
</script>
<!-- Option 2: Separate Popper and Bootstrap JS -->
<!--
<script src="https://cdn.jsdelivr.net/npm/@popperjs/[email protected]/dist/umd/popper.min.js" integrity="sha384-IQsoLXl5PILFhosVNubq5LC7Qb9DXgDA9i+tQ8Zj3iwWAwPtgFTxbJ8NT4GN1R8p" crossorigin="anonymous"></script>
<script src="https://cdn.jsdelivr.net/npm/[email protected]/dist/js/bootstrap.min.js" integrity="sha384-cVKIPhGWiC2Al4u+LWgxfKTRIcfu0JTxR+EQDz/bgldoEyl4H0zUF0QKbrJ0EcQF" crossorigin="anonymous"></script>
-->
</body>
</html>