39 lines
1.4 KiB
HTML
39 lines
1.4 KiB
HTML
<!DOCTYPE html>
|
|
<html>
|
|
<head>
|
|
<link href="bootstrap-5.0.2-dist/css/bootstrap.min.css" rel="stylesheet" ></link>
|
|
<script src="bootstrap-5.0.2-dist/js/bootstrap.bundle.min.js" ></script>
|
|
<head>
|
|
<body>
|
|
<div class="container">
|
|
<h1> OpenCompostApp </h1>
|
|
<p> hi there - this my fancy website</p>
|
|
<h2> first set up your microscope and sample preparation </h2>
|
|
<a href="setup_microscope.html">setup your microscope and camera here</a><br>
|
|
<a href="sample_prep_protocol.html">add a sample preparation protocol</a><br>
|
|
<h2> then you can start taking in samples </h2>
|
|
<a href="sample_intake.html">setup your microscope and camera here</a><br>
|
|
|
|
<h2> then you can start observing </h2>
|
|
<a href="observe_main.html">filamentous and protozoa</a><br>
|
|
<a href="observe_nema.html">nematodes</a><br>
|
|
<a href="observe_bact.html">bacteria</a><br>
|
|
<h2> in the end you can create a report </h2>
|
|
<a href="create_report.html"> create a report here</a>
|
|
|
|
|
|
</div>
|
|
</body>
|
|
<script>
|
|
var db;
|
|
let openRequest = indexedDB.open("my_db");
|
|
|
|
openRequest.onupgradeneeded = function() {
|
|
db = openRequest.result;
|
|
db.createObjectStore("microscope_setup", {autoIncrement : true});
|
|
db.createObjectStore("prep_protocol", {autoIncrement : true});
|
|
db.createObjectStore("sample", {autoIncrement : true});
|
|
|
|
};
|
|
</script>
|