Files
IOT-recept-printer/client/index.html

17 lines
717 B
HTML

<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<title>Printer</title>
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" type="text/css" media="screen" href="style.css" />
</head>
<body>
<input class="input" id="name" type="text" placeholder="Name">
<input class="input1" id="coords" type="text" placeholder="Your coordinates (lat,long)">
<input class="update" id="update" type="submit" value="Submit" onclick="print();">
<script src="main.js"></script>
<div class="serverResponse" id="response"></div>
</body>
</html>