All checks were successful
ci/woodpecker/push/woodpecker Pipeline was successful
49 lines
1.5 KiB
HTML
49 lines
1.5 KiB
HTML
<!DOCTYPE html>
|
|
<html lang="id">
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
<title>Test Web - CI/CD Template</title>
|
|
<style>
|
|
* { margin: 0; padding: 0; box-sizing: border-box; }
|
|
body {
|
|
background: #0f0f23;
|
|
color: #e0e0e0;
|
|
font-family: 'Segoe UI', sans-serif;
|
|
display: flex;
|
|
justify-content: center;
|
|
align-items: center;
|
|
min-height: 100vh;
|
|
}
|
|
.card {
|
|
background: linear-gradient(135deg, #1a1a2e, #16213e);
|
|
border: 1px solid #0f3460;
|
|
border-radius: 16px;
|
|
padding: 40px;
|
|
text-align: center;
|
|
max-width: 500px;
|
|
box-shadow: 0 8px 32px rgba(0,0,0,0.4);
|
|
}
|
|
h1 { font-size: 2rem; margin-bottom: 12px; color: #53c4f7; }
|
|
p { color: #aaa; margin-bottom: 8px; }
|
|
.badge {
|
|
display: inline-block;
|
|
background: #0f3460;
|
|
color: #53c4f7;
|
|
padding: 4px 12px;
|
|
border-radius: 20px;
|
|
font-size: 0.8rem;
|
|
margin-top: 16px;
|
|
}
|
|
</style>
|
|
</head>
|
|
<body>
|
|
<div class="card">
|
|
<h1>🚀 Test Web</h1>
|
|
<p>Proyek template CI/CD berhasil di-deploy secara otomatis! 🎉</p>
|
|
<p>Edit file ini, push ke Gitea, dan lihat otomatis terupdate.</p>
|
|
<span class="badge">Woodpecker CI ✅</span>
|
|
</div>
|
|
</body>
|
|
</html>
|