File tree Expand file tree Collapse file tree 1 file changed +44
-0
lines changed Expand file tree Collapse file tree 1 file changed +44
-0
lines changed Original file line number Diff line number Diff line change 1+ <!DOCTYPE html>
2+ < html lang ="id ">
3+ < head >
4+ < meta charset ="UTF-8 ">
5+ < meta name ="viewport " content ="width=device-width, initial-scale=1.0 ">
6+ < meta http-equiv ="X-UA-Compatible " content ="IE=edge ">
7+ < title > Pesan Tiket</ title >
8+ < link rel ="stylesheet " href ="styles.css ">
9+ < link rel ="icon " href ="favicon.png " type ="image/png "> <!-- Favicon -->
10+ </ head >
11+ < body >
12+ < header >
13+ < h1 > Pesan Tiket Film</ h1 >
14+ </ header >
15+
16+ < div class ="container ">
17+ < h2 > Formulir Pemesanan Tiket</ h2 >
18+ < form action ="konfirmasi.html " method ="POST ">
19+ < label for ="nama "> Nama Lengkap:</ label >
20+ < input type ="text " id ="nama " name ="nama " placeholder ="Nama Anda " required >
21+
22+ < label for ="email "> Email:</ label >
23+ < input type ="email " id ="email " name ="email " placeholder ="email@example.com " required >
24+
25+ < label for ="film "> Pilih Film:</ label >
26+ < select id ="film " name ="film " required >
27+ < option value =""> --Pilih Film--</ option >
28+ < option value ="Ambalan 1969 "> Ambalan 1969</ option >
29+ < option value ="Ambaheimer 2069 "> Ambaheimer 2069</ option >
30+ < option value ="Ambatron X Rusdi "> Ambatron X Rusdi</ option >
31+ </ select >
32+
33+ < label for ="jumlah "> Jumlah Tiket:</ label >
34+ < input type ="number " id ="jumlah " name ="jumlah " min ="1 " max ="10 " placeholder ="1 " required >
35+
36+ < button type ="submit " class ="btn-submit "> Pesan Sekarang</ button >
37+ </ form >
38+ </ div >
39+
40+ < footer >
41+ < p > © 2024 Bioskop Alomani. All rights reserved.</ p >
42+ </ footer >
43+ </ body >
44+ </ html >
You can’t perform that action at this time.
0 commit comments