Folder reorganize 1
This commit is contained in:
70
OLD/crystalizers.php
Normal file
70
OLD/crystalizers.php
Normal file
@@ -0,0 +1,70 @@
|
||||
<?php include "session.php";
|
||||
include "userAccess.php"; ?>
|
||||
<!DOCTYPE html>
|
||||
<html>
|
||||
<head>
|
||||
<title>Crystalizers</title>
|
||||
<link href="style.css" rel="stylesheet" type="text/css" />
|
||||
<link rel="shortcut icon" href="http://lasuca.com/images/favicon.ico" />
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||||
<script type="text/javascript" src="script.js"></script>
|
||||
|
||||
<script src="js/prototype.js" type="text/javascript"></script>
|
||||
<script src="js/scriptaculous.js" type="text/javascript"></script>
|
||||
<script type="text/javascript">
|
||||
function showHint()
|
||||
{
|
||||
var sid = Math.random();
|
||||
new Ajax.Updater('overview_values', 'data/crystal.php?sid=' + sid, {asynchronous:true});
|
||||
}
|
||||
function startShowing()
|
||||
{
|
||||
new PeriodicalExecuter(showHint, 1);
|
||||
new PeriodicalExecuter(function(pe) {}, 5);
|
||||
}
|
||||
startShowing();
|
||||
</script>
|
||||
</head>
|
||||
<body>
|
||||
<div class="center">
|
||||
|
||||
<div class="header">
|
||||
<h1>LASUCA CONTROLS</h1>
|
||||
<p>Crystalizer Data</p>
|
||||
</div>
|
||||
|
||||
<div class="row">
|
||||
|
||||
<?php include("menuinclude.php"); ?>
|
||||
|
||||
<script type="text/javascript">
|
||||
// create the back to top button
|
||||
$('body').prepend('<a href="#" class="back-to-top">Back to Top</a>');
|
||||
|
||||
var amountScrolled = 300;
|
||||
|
||||
$(window).scroll(function() {
|
||||
if ($(window).scrollTop() > amountScrolled) {
|
||||
$('a.back-to-top').fadeIn('slow');
|
||||
} else {
|
||||
$('a.back-to-top').fadeOut('slow');
|
||||
}
|
||||
});
|
||||
|
||||
$('a.back-to-top, a.simple-back-to-top').click(function() {
|
||||
$('body').animate({
|
||||
scrollTop: 0
|
||||
}, 'fast');
|
||||
return false;
|
||||
});
|
||||
</script>
|
||||
|
||||
<div class="col-13" id='overview_values' name='overview_values'>
|
||||
|
||||
|
||||
</div>
|
||||
</div>
|
||||
<?php include 'footer.php';?>
|
||||
|
||||
</body>
|
||||
</html>
|
||||
Reference in New Issue
Block a user