This commit is contained in:
Gregory Letellier
2023-11-08 16:59:13 +01:00
commit 80aeacdade
19 changed files with 5673 additions and 0 deletions

35
views/index.php Normal file
View File

@@ -0,0 +1,35 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Success Page</title>
<style>
body {
background-color: #f0f0f0;
display: flex;
align-items: center;
justify-content: center;
height: 100vh;
margin: 0;
font-family: Arial, sans-serif;
}
.message-container {
text-align: center;
padding: 20px;
border-radius: 8px;
background-color: #4caf50;
color: #fff;
box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
background: linear-gradient(to bottom, #4caf50, #388e3c 50%, #4caf50 100%);
background: linear-gradient(to right, #4caf50, #388e3c 50%, #4caf50 100%);
}
</style>
</head>
<body>
<div class="message-container">
<h1>"It works!"</h1>
</div>
</body>
</html>