-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathHalaman daftar.html
95 lines (71 loc) · 2.03 KB
/
Halaman daftar.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 http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>GoQueue</title>
<link rel="icon" type="image/x-icon" href="Logo.jpg">
</head>
<body>
<div class="badan">
<div class="header">
<h1>Data Informasi</h1>
</div>
<br>
<div class="form"><!-- Bagian Form/Input Data -->
<form action="Tampilan Antrian.php" method="post">
<label for="loket">Nama Loket</label><br>
<input type="text" required name="loket"><br>
<label for="operator">Nama Operator</label><br>
<input type="text" required name="operator"><br>
<label for="kode">Kode Antrian</label><br>
<input type="text" required name="kode"><br>
<label for="antrian">Jumlah Antrian</label><br>
<input type="number" required name="antrian"><br>
<input type="submit" style="width: 150px; padding: 10px;" value="Kirim"><br>
</form>
</div>
</div>
</body>
<style>
.header{
height: 25%;
background-color: #BED7C9;
;
margin: 0%;
display: flex;
justify-content: center;
}
body{
margin: 0%;
display: flex;
flex-direction: column;
background: #284B34;
}
.badan{
margin: 0%;
display: flex;
flex-direction: column;
}
form{
display: flex;
flex-direction: column;
align-items: center;
}
.form{
display: flex;
justify-content: center;
align-content: center;
}
input{
width: 250px;
padding: 10px;
border-radius: 25px;
background: #BED7C9;
}
label{
color: white;
}
</style>
</html>