| 12345678910111213141516171819202122232425262728293031323334353637383940 |
- <?php include 'admin_header.php'; ?>
- <!-- Content Wrapper. Contains page content -->
- <div class="content-wrapper">
- <!-- Content Header (Page header) -->
- <section class="content-header">
- <h1>
- <?=lang::_('404 Error Page')?>
- </h1>
- <ol class="breadcrumb">
- <li><a href="#"><i class="fa fa-dashboard"></i> <?=lang::_('Admin')?></a></li>
- <li class="active"><?=lang::_('404 error')?></li>
- </ol>
- </section>
- <!-- Main content -->
- <section class="content">
- <div class="error-page">
- <h2 class="headline text-yellow"> <?=lang::_('404')?></h2>
- <div class="error-content">
- <h3><i class="fa fa-warning text-yellow"></i> <?=lang::_('Oops! Page not found.')?></h3>
- <p>
- <?=lang::_('We could not find the page you were looking for.')?>
- <?=lang::_('Meanwhile, you may')?> <a href='/admin'><?=lang::_('return to dashboard')?></a> <?=lang::_('or try using the search form')?>.
- </p>
- <form class='search-form'>
- <div class='input-group'>
- <input type="text" name="search" class='form-control' placeholder="<?=lang::_('Search')?>"/>
- <div class="input-group-btn">
- <button type="submit" name="submit" class="btn btn-warning btn-flat"><i class="fa fa-search"></i></button>
- </div>
- </div><!-- /.input-group -->
- </form>
- </div><!-- /.error-content -->
- </div><!-- /.error-page -->
- </section><!-- /.content -->
- </div><!-- /.content-wrapper -->
-
- <?php include 'admin_footer.php'; ?>
|