Skip to content

Commit 1665ff9

Browse files
committed
Init pertama
Minggu 5 dan 6
1 parent f1d9b64 commit 1665ff9

6 files changed

Lines changed: 163 additions & 0 deletions

File tree

.DS_Store

6 KB
Binary file not shown.

PraktikumPWD/.DS_Store

6 KB
Binary file not shown.

PraktikumPWD/Minggu05/.DS_Store

6 KB
Binary file not shown.
Lines changed: 93 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,93 @@
1+
<?xml version="1.0" encoding="UTF-8"?>
2+
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
3+
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="EN" lang="EN">
4+
<head>
5+
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
6+
<title>Formulir Registrasi Data Mahasiswa</title>
7+
</head>
8+
<body>
9+
<h1 style="text-align: center;">Formulir Registrasi Data Mahasiswa</h1>
10+
<form action="" method="post" enctype="multipart/form-data">
11+
<table cellspacing="1" cellpadding="4" border="1" style="border-collapse: collapse; width: 80%;">
12+
<tr>
13+
<td><strong><label for="nomhs"> Nomor Mahasiswa </label></strong></td>
14+
<td><input type="text" id="nomhs" name="nomhs" size="30" /></td>
15+
</tr>
16+
<tr>
17+
<td><strong><label for="namamhs"> Nama Mahasiswa </label></strong></td>
18+
<td><input type="text" id="namamhs" name="namamhs" size="30" /></td>
19+
</tr>
20+
<tr>
21+
<td><strong> Jenis Kelamin </strong></td>
22+
<td>
23+
<label for="jkl"><input type="radio" id="jkl" name="jk" value="Laki-Laki" />Laki-Laki</label>
24+
<label for="jkp"><input type="radio" id="jkp" name="jk" value="Perempuan" />Perempuan</label>
25+
</td>
26+
</tr>
27+
<tr>
28+
<td><strong><label for="prodi">Program Studi</label></strong></td>
29+
<td>
30+
<select id="prodi" name="prodi">
31+
<option>Informatika</option>
32+
<option>Teknik Industri</option>
33+
<option>Sistem Informasi</option>
34+
</select>
35+
</td>
36+
</tr>
37+
<tr>
38+
<td><strong><label for="email">Alamat Email</label></strong></td>
39+
<td><input type="text" id="email" name="email" size="30" /></td>
40+
</tr>
41+
<tr>
42+
<td><strong><label for="telepon">Nomor Telepon</label></strong></td>
43+
<td><input type="text" id="telepon" name="telepon" size="30" /></td>
44+
</tr>
45+
<tr>
46+
<td><strong><label for="password">Password</label></strong></td>
47+
<td><input type="password" id="password" name="password" size="30" /></td>
48+
</tr>
49+
<tr>
50+
<td><strong><label for="photo">Photo</label></strong></td>
51+
<td><input type="file" id="photo" name="photo" size="18" accept="image/gif, image/jpeg, image/png" /></td>
52+
</tr>
53+
<tr>
54+
<td><strong><label for="namasmu">Nama Sekolah Asal (SMU)</label></strong></td>
55+
<td><input type="text" id="namasmu" name="namasmu" size="30" /></td>
56+
</tr>
57+
<tr>
58+
<td><strong><label for="alamatsmu">Alamat Sekolah Asal (SMU)</label></strong></td>
59+
<td><input type="text" id="alamatsmu" name="alamatsmu" size="30" /></td>
60+
</tr>
61+
<tr>
62+
<td><strong><label for="teleponsmu">Telepon Sekolah Asal (SMU)</label></strong></td>
63+
<td><input type="text" id="teleponsmu" name="teleponsmu" size="30" /></td>
64+
</tr>
65+
<tr>
66+
<td valign="top"><p><strong><label for="hal">Hal Favorit</label></strong></p>
67+
<p><strong>Musik</strong><br />
68+
<label for="musikpop"><input type="checkbox" id="musikpop" name="musik" value="Pop" />Pop</label>
69+
<label for="musikrock"><input type="checkbox" id="musikrock" name="musik" value="Rock" />Rock</label>
70+
<label for="musikjazz"><input type="checkbox" id="musikjazz" name="musik" value="Jazz" />Jazz</label></p>
71+
<p><strong>Film</strong><br />
72+
<label for="filmdrama"><input type="checkbox" id="filmdrama" name="film" value="Drama" />Drama</label>
73+
<label for="filmaction"><input type="checkbox" id="filmaction" name="film" value="Action" />Action</label>
74+
<label for="filmsci"><input type="checkbox" id="filmsci" name="film" value="Sci-Fi" />Sci-Fi</label></p>
75+
<p><strong>Makanan</strong><br />
76+
<label for="makanasea"><input type="checkbox" id="makanasea" name="makanan" value="Seafood" />Seafood</label>
77+
<label for="makanantra"><input type="checkbox" id="makanantra" name="makanan" value="Tradisional" />Tradisional</label>
78+
<label for="makananfast"><input type="checkbox" id="makananfast" name="makanan" value="Fastfood" />Fastfood</label></p>
79+
</td>
80+
</tr>
81+
<tr>
82+
<td valign="top"><strong><label for="resume">Resume</label></strong></td>
83+
<td><textarea id="resume" name="resume" rows="10" cols="23"></textarea></td>
84+
</tr>
85+
<tr>
86+
<td colspan="2" style="text-align: center;">
87+
<input type="submit" id="simpan" name="simpan" value="Simpan" />
88+
</td>
89+
</tr>
90+
</table>
91+
</form>
92+
</body>
93+
</html>
Lines changed: 70 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,70 @@
1+
<?xml version="1.0" encoding="UTF-8"?>
2+
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
3+
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="EN" lang="EN">
4+
<head>
5+
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8"/>
6+
<title>Reservation Hotel Room</title>
7+
</head>
8+
<body>
9+
<h1><strong>Reservation Hotel Room</strong></h1>
10+
<form action="" method="post" enctype="application/x-www-form-urlencoded">
11+
<!-- Personal Data-->
12+
<fieldset>
13+
<legend><strong>Personal Data</strong></legend>
14+
<ol>
15+
<li>Name</li>
16+
<input type="text" name="name" style="width: 85%" />
17+
<li>Gender</li>
18+
<input type="text" name="gender" style="width: 85%" />
19+
<li>Email Address</li>
20+
<input type="text" name="email" style="width: 85%" />
21+
<li>Telp Number</li>
22+
<input type="text" name="telp" style="width: 85%" />
23+
</ol>
24+
</fieldset>
25+
<!-- Reservation Room Form-->
26+
<legend><strong>Reservation Room Form</strong></legend>
27+
<ol>
28+
<li>Reservator Name</li>
29+
<input type="text" name="reservatorname" style="width: 85%" />
30+
<li>Booking Date</li>
31+
<input type="text" name="date" style="width: 85%" />
32+
<li>Room Type</li>
33+
<select id="room" name="room" style="width: 85%">
34+
<option>Deluxe</option>
35+
<option>Suite</option>
36+
<option>Studio</option>
37+
</select>
38+
<li>Bed Type</li>
39+
<select id="bed" name="bed" style="width: 85%">
40+
<option>Single Bed</option>
41+
<option>Twin Bed</option>
42+
<option>Double Bed</option>
43+
<option>Queen Bed</option>
44+
<option>King Bed</option>
45+
</select>
46+
<li>Breakfast</li>
47+
<input type="radio" id="breakfastwith" name="breakfast" value="with" /> With Breakfast
48+
<input type="radio" id="breakfastwithout" name="breakfast" value="without" /> Without Breakfast
49+
</ol>
50+
<!-- Payment Form-->
51+
<fieldset>
52+
<legend><strong>Payment</strong></legend>
53+
<ol>
54+
<li>Check-in Date</li>
55+
<input type="text" name="checkin" style="width: 85%" />
56+
<li>Check-out Date</li>
57+
<input type="text" name="checkout" style="width: 85%" />
58+
<li>Payment Method</li>
59+
<select id="room" name="room">
60+
<option>Cash</option>
61+
<option>Debit</option>
62+
<option>Credit</option>
63+
</select>
64+
</ol>
65+
</fieldset>
66+
<!-- Submit-->
67+
<input type="submit" id="submit" name="submit" value="Submit" />
68+
</form>
69+
</body>
70+
</html>

PraktikumPWD/Minggu06/.DS_Store

6 KB
Binary file not shown.

0 commit comments

Comments
 (0)