prefs.html 1.1 KB

12345678910111213141516171819202122232425262728
  1. <!DOCTYPE html>
  2. <html lang="en">
  3. <head>
  4. <title>SimplyTranslate - Preferences</title>
  5. <link rel="shortcut icon" href="{{ url_for('static', filename='favicon.gif') }}">
  6. <link rel="stylesheet" href="{{ url_for('static', filename='style.css') }}">
  7. <meta name="description" content="Experience simple and private translations">
  8. <meta name="viewport" content="width=device-width, initial-scale=1.0">
  9. <meta charset="UTF-8">
  10. <meta http-equiv="Content-Security-Policy" content="script-src 'self' 'unsafe-inline'">
  11. <meta name="robots" content="noindex,nofollow,noarchive" />
  12. </head>
  13. <body>
  14. <header><h1>SimplyTranslate</h1></header>
  15. <h2>Preferences</h2>
  16. <form action="/prefs" method="POST" id="prefs">
  17. <label for="use_text_fields">Use text fields for language selection</label>
  18. <input type="checkbox" id="use_text_fields" name="use_text_fields"
  19. {% if use_text_fields %}checked{% endif %}>
  20. <label for="tts_enabled">Enable text-to-speech</label>
  21. <input type="checkbox" id="tts_enabled" name="tts_enabled"
  22. {% if tts_enabled %}checked{% endif %}>
  23. <button type="submit">Save preferences</button>
  24. </form>
  25. <a href="/"> &#10550; Go Back To The Translator</a>
  26. </body>
  27. </html>