lost.php 2.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354
  1. <?php
  2. use yii\helpers\Html;
  3. use app\assets\CoreAsset;
  4. $asset = CoreAsset::register($this);
  5. $assetsUrl = $asset->baseUrl;
  6. ?>
  7. <!doctype html>
  8. <html>
  9. <head>
  10. <meta charset="utf-8" />
  11. <title><?php echo Yii::t('admin','alert info');?></title>
  12. <meta name="viewport" content="width=device-width, initial-scale=1.0">
  13. <!-- App favicon -->
  14. <link rel="shortcut icon" href="<?= $assetsUrl ?>/images/favicon.ico">
  15. <!-- Bootstrap Css -->
  16. <link href="<?= $assetsUrl ?>/css/bootstrap.css" id="bootstrap-style" rel="stylesheet" type="text/css" />
  17. <!-- Icons Css -->
  18. <link href="<?= $assetsUrl ?>/css/icons.css" rel="stylesheet" type="text/css" />
  19. <!-- App Css-->
  20. <link href="<?= $assetsUrl ?>/css/app.css" id="app-style" rel="stylesheet" type="text/css" />
  21. </head>
  22. <body>
  23. <div class="account-pages my-5 pt-5">
  24. <div class="container">
  25. <div class="row">
  26. <div class="col-lg-12">
  27. <div class="text-center mb-5">
  28. <h1 class="display-2 fw-medium">4<i class="bx bx-buoy bx-spin text-primary display-3"></i>4</h1>
  29. <h4 class="text-uppercase"><?php echo Yii::t('admin','sorry, page not found');?></h4>
  30. <div class="mt-5 text-center">
  31. <a class="btn btn-primary waves-effect waves-light" href="<?php echo Yii::$app->request->referrer;?>"><?php echo Yii::t('admin','redirect to referpage');?></a>
  32. </div>
  33. </div>
  34. </div>
  35. </div>
  36. <div class="row justify-content-center">
  37. <div class="col-md-8 col-xl-6">
  38. <div>
  39. <img src="<?= $assetsUrl ?>/images/error-img.png" class="img-fluid">
  40. </div>
  41. </div>
  42. </div>
  43. </div>
  44. </div>
  45. <!-- JAVASCRIPT -->
  46. <script src="<?= $assetsUrl ?>/libs/jquery/jquery-3.7.0.min.js"></script>
  47. <script src="<?= $assetsUrl ?>/libs/bootstrap/js/bootstrap.bundle.min.js"></script>
  48. <script src="<?php echo $assetsUrl;?>/libs/node-waves/waves.min.js"></script>
  49. <script src="<?php echo $assetsUrl;?>/libs/metismenu/metisMenu.min.js"></script>
  50. <script src="<?php echo $assetsUrl;?>/libs/simplebar/simplebar.min.js"></script>
  51. <!-- App js -->
  52. <script src="<?php echo $assetsUrl;?>/js/app.js"></script>
  53. </body>
  54. </html>