about summary refs log tree commit diff
path: root/index.html
diff options
context:
space:
mode:
Diffstat (limited to 'index.html')
-rw-r--r--index.html4
1 files changed, 3 insertions, 1 deletions
diff --git a/index.html b/index.html
index 5438389..39427fa 100644
--- a/index.html
+++ b/index.html
@@ -8,9 +8,11 @@
 	</head>
 	<body>
 		<h1>Guessing Game</h1>
-		<form onsubmit="hello(event)">
+		<form onsubmit="checkAnswer(event)">
 			<input type="text" placeholder="Guess" autofocus>
 		</form>
 		<p id="result"></p>
+		<p id="win"></p>
+		<p id="attempt"></p>
 	</body>
 </html>