mirror of
https://github.com/Manoj-HV30/PhonoCoach.git
synced 2026-05-16 19:35:26 +00:00
27 lines
701 B
HTML
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>
|