21 lines
339 B
HTML
21 lines
339 B
HTML
<!DOCTYPE html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="utf-8">
|
|
<title>Is this message good or bad?</title>
|
|
</head>
|
|
<body>
|
|
<h1>Is this message good or bad?</h1>
|
|
|
|
<pre id="message"></pre>
|
|
|
|
<br>
|
|
<button id="good">Good</button>
|
|
<br>
|
|
<button id="bad">Bad</button>
|
|
|
|
<script type="module" src="./msg_confirm.js"></script>
|
|
|
|
<body>
|
|
</html>
|