-
Notifications
You must be signed in to change notification settings - Fork 0
/
Sebelum_css.html
95 lines (95 loc) · 2.84 KB
/
Sebelum_css.html
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Sebelum</title>
</head>
<body>
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Form Registrasi</title>
</head>
<body>
<form action="#" method="post" enctype="multipart/form-data">
<table border="1">
<tr>
<th colspan="2">Register Form</th>
</tr>
<tr>
<td><label for="last-name">Nama Depan</label></td>
<td>
<input type="text" id="last-name" name="last-name" required />
</td>
</tr>
<tr>
<td><label for="first-name">Nama Belakang</label></td>
<td>
<input type="text" id="first-name" name="first-name" required />
</td>
</tr>
<tr>
<td><label for="username">Username</label></td>
<td>
<input
type="textnumber"
id="username"
name="username"
required
/>
</td>
</tr>
<tr>
<td><label for="address">Alamat</label></td>
<td>
<input type="textnumber" id="address" name="address" required />
</td>
</tr>
<tr>
<td><label for="dob">Tanggal Lahir</label></td>
<td><input type="date" id="dob" name="dob" required /></td>
</tr>
<tr>
<td><label for="gender">Jenis Kelamin</label></td>
<td>
<select id="gender" name="gender" required>
<option value="male">Laki-laki</option>
<option value="female">Perempuan</option>
</select>
</td>
</tr>
<tr>
<td><label for="password">Password</label></td>
<td>
<input
type="textnumber"
id="password"
name="password"
required
/>
</td>
</tr>
<tr>
<td><label for="photo">Foto</label></td>
<td>
<input
type="file"
id="photo"
name="photo"
accept="image/*"
required
/>
</td>
</tr>
<tr>
<th colspan="2"><button>DAFTAR</button></th>
</tr>
</table>
</form>
</body>
</html>
</body>
</html>