implement custom prompt

This commit is contained in:
Araxeus
2021-04-04 19:58:25 +03:00
parent d12d16348a
commit 7c8e946871
9 changed files with 424 additions and 13 deletions

18
prompt/page/prompt.html Normal file
View File

@ -0,0 +1,18 @@
<html>
<head>
<link href="prompt.css" rel="stylesheet" />
</head>
<body>
<div id="container">
<form id="form">
<div id="label">...</div>
<div id="data-container"></div>
<div id="buttons">
<button id="cancel">Cancel</button>
<button type="submit" id="ok">OK</button>
</div>
</form>
</div>
<script src="prompt.js"></script>
</body>
</html>