facut pana la video 7

This commit is contained in:
Cerbu Andrei Mihnea
2023-05-10 00:47:48 +03:00
parent 1abdc313f4
commit 90f12ab916
40 changed files with 1644 additions and 41 deletions
+27
View File
@@ -0,0 +1,27 @@
<?php use app\core\Application ?>
<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>Bootstrap demo</title>
</head>
<body>
<div class="container">
<?php if(Application::$app->session->getFlash('success')): ?>
<div class="alert alert-success">
<?php
echo Application::$app->session->getFlash('success');
?>
</div>
<?php endif; ?>
{{content}}
</div>
</body>
</html>