Initial commit of PhoneCoach project

This commit is contained in:
2025-08-16 03:37:24 +05:30
parent f14485a833
commit 5326b855dd
8 changed files with 436 additions and 0 deletions
+26
View File
@@ -0,0 +1,26 @@
<!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>