techrec/server/pages/new.html

53 lines
759 B
HTML
Raw Normal View History

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