in-c4/static/form.html
2022-08-04 05:41:51 +02:00

44 lines
1.2 KiB
HTML

<!DOCTYPE html>
<html>
<head>
<title>in?</title>
<link rel="stylesheet" href="style.css">
<script src="form.js"></script>
</head>
<body>
<h1><a href="../">in?</a></h1>
<form id="form">
<label for="id">ID</label>
<input id="id" type="text" placeholder="loading...">
<label for="is_in">Is in</label>
<select id="is_in">
<option value=""></option>
</select>
<label for="coords_bl">Bottom left coordinates</label>
<input id="coords_bl" type="text">
<label for="coords_tr">Top right coordinates</label>
<input id="coords_tr" type="text">
<label for="type">Type</label>
<input id="type" type="text">
<label for="name">Name / Label</label>
<input id="name" type="text">
<label for="content">Content</label>
<textarea id="content"></textarea>
<label for="note">Note</label>
<textarea id="note"></textarea>
<label for="hidden">Hide by default</label>
<input type="checkbox" id="hidden">
</form>
<button id="delete" class="btn red" autocomplete="off">Delete</button>
<button id="save" class="btn green" autocomplete="off">Save</button>
</body>
</html>