File size: 1,217 Bytes
c13064d
 
 
 
 
 
 
 
 
bf90d9e
c13064d
 
 
 
9e47428
 
 
 
 
 
 
 
 
 
 
 
 
 
bf90d9e
 
9e47428
 
 
c13064d
7071579
 
 
c13064d
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
<!DOCTYPE html>
<html lang="en">
<head>
  <meta charset="UTF-8">
  <meta name="viewport" content="width=device-width, initial-scale=1.0">
  <title>MP3 Player PWA</title>
  <meta name="theme-color" content="#317EFB">
  <link rel="manifest" href="/manifest.json">
  <link rel="stylesheet" href="/styles.css">
  <!-- Removed Gradio client library -->
</head>
<body>
  <h1>web to podcast player</h1>
  <audio id="player" controls></audio>
  
  <!-- Add settings button -->
  <button id="settingsBtn">Settings</button>

  <!-- Add settings modal -->
  <div id="settingsModal" class="modal">
    <div class="modal-content">
      <span class="close">&times;</span>
      <h2>Settings</h2>
      <label for="apiKey">OpenAI API Key:</label>
      <div class="api-key-container">
        <input type="password" id="apiKey" placeholder="Enter your API key">
        <button id="toggleApiKey">👁️</button>
      </div>
      <label for="apiServer">API Server:</label>
      <input type="text" id="apiServer" placeholder="Enter API server URL">
      <button id="saveSettings">Save</button>
    </div>
  </div>


  <script type="module" src="script.js"></script>
  <!-- <script src="/script.js"></script> -->
</body>
</html>