IZcontrol is a server side application that makes it possible to easily control remote appliances over the network using telnet, UDP and other protocols.
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

30 lines
1.3 KiB

4 years ago
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="<?php echo $ENCODING; ?>" />
<link rel="manifest" href="manifest.json">
<meta name="mobile-web-app-capable" content="yes">
<meta name="apple-mobile-web-app-capable" content="yes">
<meta name="application-name" content="IZZ Control">
<meta name="apple-mobile-web-app-title" content="IZZ Control">
<meta name="theme-color" content="#979ea5">
<meta name="msapplication-navbutton-color" content="#979ea5">
<meta name="apple-mobile-web-app-status-bar-style" content="black-translucent">
<meta name="msapplication-starturl" content="/192.168.0.200">
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
<title>IzzoControl</title>
<base href="<?php echo $SCHEME.'://'.$HOST.':'.$PORT.$BASE.'/'; ?>" />
<link rel="stylesheet" href="lib/code.css" type="text/css" />
<link rel="stylesheet" href="ui/css/base.css" type="text/css" />
<link rel="stylesheet" href="ui/css/theme.css" type="text/css" />
<link rel="stylesheet" href="ui/css/font-awesome.min.css" type="text/css" />
<script src="ui/js/vue.js" type="text/javascript" charset="utf-8"></script>
<script src="ui/js/axios.min.js" type="text/javascript" charset="utf-8"></script>
</head>
<body>
<?php echo $this->render(Base::instance()->get('template')); ?>
</body>
</html>