this was the big problem that was a huge hiccup. it is now solved. The next thing is just getting the buttons to work the way they're expected to other than that it's all fine.
22 lines
310 B
HTML
22 lines
310 B
HTML
<!DOCTYPE html>
|
|
|
|
<!-- HTML page for a "generic dialog" -->
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="utf-8">
|
|
</head>
|
|
<body>
|
|
<h1 id="title-h1"></h1>
|
|
|
|
<pre id="miscinfo"></pre>
|
|
|
|
<br>
|
|
<button id="good">Yes</button>
|
|
<br>
|
|
<button id="bad">No</button>
|
|
|
|
<script type="module" src="./gb.js"></script>
|
|
|
|
<body>
|
|
</html>
|