serviceworker-cookbook/virtual-server/index.html

21 строка
775 B
HTML
Исходник Обычный вид История

2015-11-25 00:57:10 +03:00
<!doctype html>
<html>
<head>
<meta charset="utf-8" />
2015-11-26 01:09:22 +03:00
<title>Virtual server - ServiceWorker Cookbook</title>
2015-11-25 00:57:10 +03:00
<meta name="viewport" content="width=device-width, initial-scale=1">
</head>
<body>
2015-11-26 01:09:22 +03:00
<h1>How to</h1>
<p>Try to add and delete some quotations. <strong>The session is not intended to survive refreshing the page</strong> but you could see it pretending to survive. This means the worker holding the state has not been killed yet.</p>
<p><form id="add-form">
2015-11-25 00:57:10 +03:00
<input type="text" id="new-quote" placeholder="Add a quote here"/>
<input type="text" id="quote-author" placeholder="And its author"/><input type="submit" value="Add" />
2015-11-26 01:09:22 +03:00
</form></p>
<h2>Quotes</h2>
2015-11-25 00:57:10 +03:00
<table id="quotations">
</table>
<script src="./index.js"></script>
</body>
</html>