Initial commit: Cloud Control Panel

This commit is contained in:
2026-01-10 01:24:08 +07:00
commit 01d99c5054
69 changed files with 12697 additions and 0 deletions

21
resources/views/error.php Executable file
View File

@@ -0,0 +1,21 @@
<?php
/** @var Din9xtrCloud\ViewModels\Errors\ErrorViewModel $viewModel */
?>
<div class="error-container">
<div class="error-code"><?= htmlspecialchars($viewModel->errorCode) ?></div>
<p class="error-message">
<?= nl2br(htmlspecialchars($viewModel->message)) ?>
</p>
<div class="action-buttons">
<a href="javascript:history.back()" class="btn btn-secondary">
Go Back
</a>
<a href="/" class="btn btn-primary">
Go to Homepage
</a>
</div>
</div>