Files
PhonoCoach/frontend/popup.html
T

27 lines
701 B
HTML

<!doctype html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
<title>PhonoCoach</title>
<link rel="stylesheet" href="popup.css" />
</head>
<body>
<h3>Selected Text</h3>
<div id="displayText">No selected text</div>
<button id="recordBtn">🎙 Record</button>
<p id="status"></p>
<div id="similarityScore"></div>
<p id="pronunciationTips"></p>
<div id="phonemeDiff"></div>
<!-- Color legend (shown after accuracy) -->
<div id="colorLegend"></div>
<script src="popup.js"></script>
</body>
</html>