mirror of
https://gitlab.com/CIEFWorldwideSdnBhd/exchange-2.0.git
synced 2026-08-19 04:23:55 +00:00
31 lines
791 B
PHP
31 lines
791 B
PHP
<!DOCTYPE html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
<title>Site Under Maintenance</title>
|
|
<style>
|
|
body {
|
|
font-family: Arial, sans-serif;
|
|
background-color: #f4f4f4;
|
|
text-align: center;
|
|
padding: 50px;
|
|
}
|
|
.content {
|
|
background: white;
|
|
padding: 20px;
|
|
border-radius: 10px;
|
|
display: inline-block;
|
|
box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
|
|
}
|
|
</style>
|
|
</head>
|
|
<body>
|
|
<div class="content">
|
|
<h1>{{ config('maintenance.title') }}</h1>
|
|
<p>{{ config('maintenance.message') }}</p>
|
|
<p>— CIEF EXCHANGE</p>
|
|
</div>
|
|
</body>
|
|
</html>
|