TIF_NGANJUK_E41211991/tps-asal-pemilih.html

126 lines
2.6 KiB
HTML

<!DOCTYPE html>
<html lang="id">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Informasi TPS Asal</title>
<style>
body {
font-family: sans-serif;
margin: 0;
padding: 20px;
background-color: #fff;
}
.back-button {
font-size: 24px;
cursor: pointer;
border: none;
background: none;
}
h2 {
margin-top: 10px;
font-size: 20px;
}
.desc {
color: #888;
font-size: 14px;
margin-bottom: 20px;
}
.steps {
display: flex;
align-items: center;
margin-bottom: 20px;
}
.steps div {
width: 30px;
height: 30px;
border-radius: 50%;
background-color: #e74c3c;
color: white;
display: flex;
align-items: center;
justify-content: center;
font-weight: bold;
position: relative;
z-index: 1;
}
.step-line {
flex: 1;
height: 1px; /* Menurunkan tinggi garis menjadi 1px untuk garis lebih tipis */
background-color: #f5b5ae;
margin: 0 10px;
border-radius: 4px;
position: relative;
}
.step-line::before {
content: '';
width: 50%;
height: 100%;
background-color: #e74c3c;
position: absolute;
top: 0;
left: 0;
border-radius: 4px;
}
.step-line.completed::before {
background-color: #e74c3c;
}
.info-table {
font-size: 15px;
line-height: 2;
margin-bottom: 40px;
}
.info-table td {
padding: 4px 10px;
}
.btn {
display: block;
width: 100%;
background-color: #e74c3c;
color: white;
border: none;
padding: 14px;
border-radius: 10px;
font-size: 16px;
cursor: pointer;
}
</style>
</head>
<body>
<button class="back-button" onclick="history.back()"></button>
<h2>Informasi TPS Asal</h2>
<p class="desc">Cek informasi data TPS asal anda, sebelum melanjutkan proses pemindahan TPS</p>
<div class="steps">
<div>1</div>
<div class="step-line completed"></div>
<div style="background-color: #eee; color: #999;">2</div>
</div>
<table class="info-table">
<tr><td>Provinsi</td><td>: Jakarta</td></tr>
<tr><td>Kabupaten / Kota</td><td>: Kepulauan Seribu</td></tr>
<tr><td>Kecamatan</td><td>: Menteng</td></tr>
<tr><td>Desa / Kelurahan</td><td>: Bendungan Hilir</td></tr>
<tr><td>RW</td><td>: 001</td></tr>
<tr><td>RT</td><td>: 002</td></tr>
</table>
<button class="btn" onclick="window.location.href='form-pindah.html'">Selanjutnya</button>
</body>
</html>