diff --git a/main.js b/main.js
index 8deebb3..94082c5 100644
--- a/main.js
+++ b/main.js
@@ -197,6 +197,7 @@ const App = () => {
<div class="actions">
<button onClick=${undoLastMove} disabled=${state.history.length === 0}>Undo</button>
+ <button onClick=${() => { if (confirm("Start a new game? Current progress will be lost.")) startGame(); }}>New Game</button>
<button onClick=${fleeRoom} disabled=${!can_flee_check}>Run Away</button>
</div>
</div>