mitrobill/ui/ui/router-error.tpl

85 lines
3.6 KiB
Smarty
Raw Normal View History

2023-08-28 10:12:55 +07:00
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=1">
2023-09-14 13:45:35 +07:00
<title>Error - PHPNuxBill</title>
2023-08-28 10:12:55 +07:00
<link rel="shortcut icon" href="ui/ui/images/logo.png" type="image/x-icon" />
<link rel="stylesheet" href="ui/ui/styles/bootstrap.min.css">
<link rel="stylesheet" href="ui/ui/fonts/ionicons/css/ionicons.min.css">
<link rel="stylesheet" href="ui/ui/fonts/font-awesome/css/font-awesome.min.css">
2023-12-21 13:44:10 +07:00
<link rel="stylesheet" href="ui/ui/styles/modern-AdminLTE.min.css">
2024-01-17 10:54:31 +07:00
2023-08-28 10:12:55 +07:00
<style>
::-moz-selection {
/* Code for Firefox */
color: red;
background: yellow;
}
::selection {
color: red;
background: yellow;
}
</style>
</head>
<body class="hold-transition skin-blue">
<div class="container">
<section class="content">
<div class="row">
2024-02-15 11:00:59 +07:00
<div class="col-md-10 col-md-offset-1">
2023-10-27 10:36:10 +07:00
<div class="box box-danger box-solid">
2023-09-14 13:45:35 +07:00
<section class="content-header">
<h1 class="text-center">
{$error_title}
</h1>
</section>
<div class="box-body" style="font-size: larger;">
2024-02-15 11:00:59 +07:00
<center>
<img src="./ui/ui/images/error.png" class="img-responsive hidden-sm hidden-xs"></center>
<br>
2023-09-14 13:45:35 +07:00
{$error_message}
2024-02-15 11:00:59 +07:00
<br>
2024-02-26 15:02:36 +07:00
Mikrotik troubleshooting: <br>
<ul>
<li>Make sure you use API Port, Default 8728</li>
<li>Make sure Username and Password are correct</li>
<li>Make sure your hosting not blocking port to external</li>
<li>Make sure your Mikrotik accessible from PHPNuxBill</li>
</ul>
2023-09-14 13:45:35 +07:00
</div>
<div class="box-footer">
<div class="btn-group btn-group-justified" role="group" aria-label="...">
<a href="./update.php?step=4" class="btn btn-info btn-sm btn-block">Update Database</a>
2024-01-17 10:54:31 +07:00
<a href="{$_url}community#update" class="btn btn-success btn-sm btn-block">Update
2023-09-14 13:45:35 +07:00
PHPNuxBill</a>
</div>
2024-01-17 10:54:31 +07:00
<br>
<div class="btn-group btn-group-justified" role="group" aria-label="...">
<a href="https://github.com/hotspotbilling/phpnuxbill/discussions" target="_blank"
class="btn btn-success btn-sm btn-block">Ask Github Community</a>
<a href="https://t.me/phpnuxbill" target="_blank"
class="btn btn-primary btn-sm btn-block">Ask Telegram Community</a>
</div>
2023-09-14 13:45:35 +07:00
<br><br>
<a href="javascript::history.back()" onclick="history.back()"
class="btn btn-warning btn-block">back</a>
</div>
2023-08-28 10:12:55 +07:00
</div>
2023-09-14 13:45:35 +07:00
</div>
<div class="col-md-4">
<img src="./ui/ui/images/error.png" class="img-responsive hidden-md hidden-lg">
2023-08-28 10:12:55 +07:00
</div>
</div>
</section>
</div>
</body>
</html>