-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsettings.php
More file actions
79 lines (64 loc) · 3.02 KB
/
Copy pathsettings.php
File metadata and controls
79 lines (64 loc) · 3.02 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
<!DOCTYPE html>
<html lang="en">
<head>
<title>Settings</title>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
</head>
<!-- CSS-->
<link rel="stylesheet" href="http://maxcdn.bootstrapcdn.com/bootstrap/3.3.5/css/bootstrap.min.css">
<link rel="stylesheet" href="css/style.css?<?php echo time();?>">
<link href="css/hover-min.css" rel="stylesheet">
<link rel="stylesheet" href="https://fonts.googleapis.com/icon?family=Material+Icons">
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/font-awesome/4.4.0/css/font-awesome.min.css">
<link href='http://fonts.googleapis.com/css?family=Lato:300' rel='stylesheet' type='text/css'>
<!-- JS-->
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.11.3/jquery.min.js"></script>
<script src="http://maxcdn.bootstrapcdn.com/bootstrap/3.3.5/js/bootstrap.min.js"></script>
<script src="js/actions.js?<?php echo time();?>"></script>
<script language="Javascript" type="text/javascript">
var TIMEOUT = 10000;
/*var refreshInterval = setInterval(function() {
var random = Math.floor(Math.random() * Math.pow(2, 31));
$('img#camera').attr('src', 'http://192.168.1.122:8080/shot.jpg?i=' + random);
}, TIMEOUT);*/
</script>
<link rel="icon" href="favicon.ico?<?php echo time();?>" type="image/x-icon"/>
<!-- PHP-->
<?php
require_once 'Mobile_Detect.php';
$detect = new Mobile_Detect();
?>
<body>
<!-- Nav Bar -->
<div id="nav_bar" class="navbar navbar-inverse navbar-fixed-top">
<div class="container">
<div id="nav_bar_header" class="navbar-header">
<a href="#" class="pull-left"><img class="navbar_logo hvr-float" src="img/home_white.png"/></a>
<a href="#" class="navbar-brand"> Home Automation
</a>
<button class="navbar-toggle" data-toggle="collapse" data-target = ".navHeaderCollapse">
<span class="icon-bar"></span>
</button>
</div>
<div class="collapse navbar-collapse navHeaderCollapse">
<ul class="nav navbar-nav navbar-right sitenav" id="nav_bar_menu">
<li id="nav_dashboard" class="active"><a id="dashboard" href="index.php"><i class="material-icons pull-left pull-top">dashboard</i><span style="margin-left:10px;">Dashboard</span></a></li>
<li id="nav_remote"><a id="remote" href="remote.php"><i class="material-icons pull-left pull-top">settings_remote</i><span style="margin-left:10px;">Remote</span></a></li>
<li id="nav_documentation"><a id="documentation" href="documentation.php" ><i class="material-icons pull-left pull-top">description</i><span style="margin-left:10px;">Documentation</span></a></li>
<li id="nav_settings"><a id="settings" href="settings.php"><i class="material-icons pull-left pull-top">settings</i><span style="margin-left:10px;">Settings</span></a></li>
</div>
</div>
</div>
<!-- Content -->
<div class="container">
<div class="jumbotron" id="content">
<h1>Settings</h1>
<div class="container">
<div class="container">
</div>
</div>
</div>
</div>
</body>
</html>