techrec/client/index.html
antifaz 83f0c79564 Create, Update, Delete e Search Function seem work correctly.
In the JS Gui, the workflow stops at the Save Button, but data
area rightly managed.
2013-11-24 23:43:56 +01:00

52 lines
775 B
HTML

<!DOCTYPE html>
<html>
<head>
<title> TechREC </title>
<link rel="stylesheet" type="text/css" href="css/style.css">
<script src="js/jquery-1.9.1.min.js"></script>
<script type="text/javascript" src="js/reclibrary.js"></script>
<script>
$(document).ready(function(){
$("#newlink").click( function(){
rec_new();
});
//rec_active();
rec_new();
});
</script>
</head>
<body>
<div id="pagecontainer">
<h1> techr*c </h1>
<h2>
<a href="#" id="newlink">+ nuova registrazione</a> <br />
<a href="tempo.html"> macchina del tempo</a>
</h2>
<div id="buttonscontainer"> </div>
<div id="addnewrecarea"> </div>
</div>
<div id="footer">
techbl*c
</div>
</body>
</html>