paraMatrix/src/settings.html

23 行
440 B
HTML
Raw パーマリンク 通常表示 履歴

2023-04-29 21:50:32 +09:00
<!DOCTYPE html>
2023-05-19 23:50:03 +09:00
<html lang="en">
2023-04-29 21:50:32 +09:00
<head>
<meta charset="utf-8">
<link rel="stylesheet" href="settings.css">
<title>paraMatrix &mdash; edit rules</title>
</head>
2023-12-12 13:09:57 +09:00
<body>
2023-04-29 21:50:32 +09:00
<form>
2023-05-19 23:50:03 +09:00
<label>
Temporary rules
2023-12-12 13:09:57 +09:00
<textarea class="rules"></textarea>
2023-05-19 23:50:03 +09:00
</label>
<label>
Commited rules
2023-12-12 13:09:57 +09:00
<textarea class="savedRules"></textarea>
2023-05-19 23:50:03 +09:00
</label>
2023-04-29 21:50:32 +09:00
<button>Save</button>
</form>
2023-12-12 13:09:57 +09:00
<script type="module" src="settings.js"></script>
2023-04-29 21:50:32 +09:00
</body>
</html>