46 lines
903 B
HTML
46 lines
903 B
HTML
<!DOCTYPE html>
|
|
<html lang="fr">
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
<title>It works</title>
|
|
<style>
|
|
body {
|
|
margin: 0;
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: center;
|
|
min-height: 100vh;
|
|
background: #1a1a2e;
|
|
font-family: monospace;
|
|
}
|
|
.box {
|
|
text-align: center;
|
|
color: #e0e0e0;
|
|
}
|
|
h1 {
|
|
font-size: 4rem;
|
|
margin: 0;
|
|
color: #00d4aa;
|
|
}
|
|
p {
|
|
font-size: 1.1rem;
|
|
color: #888;
|
|
margin-top: 1rem;
|
|
}
|
|
.ts {
|
|
margin-top: 2rem;
|
|
font-size: 0.8rem;
|
|
color: #444;
|
|
}
|
|
</style>
|
|
</head>
|
|
<body>
|
|
<div class="box">
|
|
<h1>It works!</h1>
|
|
<p>Pipeline git → build → push Harbor → sign cosign → deploy Portainer OK</p>
|
|
<div class="ts">__DEPLOY_TIME__</div>
|
|
</div>
|
|
</body>
|
|
</html>
|