diff options
| author | Abdellah El Morabit <nsrddyn@gmail.com> | 2024-11-24 12:41:38 +0100 |
|---|---|---|
| committer | Abdellah El Morabit <nsrddyn@gmail.com> | 2024-11-24 12:41:38 +0100 |
| commit | 3a6928a0189bfe8d481c7eeac7a3d3df5dd9cdc0 (patch) | |
| tree | 86a00bcd10dae82ac566e68c2c525fa71a44607a /templates/page | |
| parent | 567787eabe414592d005c727868091bcba2bf6fe (diff) | |
updates to the web gui
Diffstat (limited to 'templates/page')
| -rw-r--r-- | templates/page/notes.html | 24 | ||||
| -rw-r--r-- | templates/page/overview.html | 29 | ||||
| -rw-r--r-- | templates/page/recourses.html | 29 | ||||
| -rw-r--r-- | templates/page/speech.html | 29 |
4 files changed, 111 insertions, 0 deletions
diff --git a/templates/page/notes.html b/templates/page/notes.html new file mode 100644 index 0000000..3f24816 --- /dev/null +++ b/templates/page/notes.html @@ -0,0 +1,24 @@ +<!DOCTYPE html> +<html lang="en"> + +<head> + <meta charset="UTF-8"> + <meta name="viewport" content="width=device-width, initial-scale=1.0"> + <title>Display a Message</title> + <link rel="stylesheet" href="../static/styles.css"> + <script src="../static/main.mjs" defer></script> +</head> + +<body> + <nav class="navigation"> + <a href="../index.html" class="home">HOME</a> + <h2>Display a Message</h2> + <a href="https://www.github.com/nasrlol" target="_blank">GITHUB</a> + </nav> + + <section class="content"> + <h1>Display a Message</h1> + </section> + + <footer> + <p>Created by <a href="https://www.github.com/nasrlol" target="_blank">nsrddyn</a>. All
\ No newline at end of file diff --git a/templates/page/overview.html b/templates/page/overview.html new file mode 100644 index 0000000..123bf39 --- /dev/null +++ b/templates/page/overview.html @@ -0,0 +1,29 @@ +<!DOCTYPE html> +<html lang="en"> + +<head> + <meta charset="UTF-8"> + <meta name="viewport" content="width=device-width, initial-scale=1.0"> + <title>General Tools</title> + <link rel="stylesheet" href="../static/styles.css"> + <script src="../static/main.mjs" defer></script> +</head> + +<body> + <nav class="navigation"> + <a href="../index.html" class="home">HOME</a> + <h2>General Tools</h2> + <a href="https://www.github.com/nasrlol" target="_blank">GITHUB</a> + </nav> + + <section class="content"> + <h1>General Tools</h1> + </section> + + <footer> + <p>Created by <a href="https://www.github.com/nasrlol" target="_blank">nsrddyn</a>. All rights reserved © + 2024.</p> + </footer> +</body> + +</html>
\ No newline at end of file diff --git a/templates/page/recourses.html b/templates/page/recourses.html new file mode 100644 index 0000000..992e44e --- /dev/null +++ b/templates/page/recourses.html @@ -0,0 +1,29 @@ +<!DOCTYPE html> +<html lang="en"> + +<head> + <meta charset="UTF-8"> + <meta name="viewport" content="width=device-width, initial-scale=1.0"> + <title>Resources</title> + <link rel="stylesheet" href="../static/styles.css"> + <script src="../static/main.mjs" defer></script> +</head> + +<body> + <nav class="navigation"> + <a href="../index.html" class="home">HOME</a> + <h2>Resources</h2> + <a href="https://www.github.com/nasrlol" target="_blank">GITHUB</a> + </nav> + + <section class="content"> + <h1>Resources</h1> + </section> + + <footer> + <p>Created by <a href="https://www.github.com/nasrlol" target="_blank">nsrddyn</a>. All rights reserved © + 2024.</p> + </footer> +</body> + +</html>
\ No newline at end of file diff --git a/templates/page/speech.html b/templates/page/speech.html new file mode 100644 index 0000000..1b345ba --- /dev/null +++ b/templates/page/speech.html @@ -0,0 +1,29 @@ +<!DOCTYPE html> +<html lang="en"> + +<head> + <meta charset="UTF-8"> + <meta name="viewport" content="width=device-width, initial-scale=1.0"> + <title>Speech Transcriber</title> + <link rel="stylesheet" href="../static/styles.css"> + <script src="../static/main.mjs" defer></script> +</head> + +<body> + <nav class="navigation"> + <a href="../index.html" class="home">HOME</a> + <h2>Speech Transcriber</h2> + <a href="https://www.github.com/nasrlol" target="_blank">GITHUB</a> + </nav> + + <section class="content"> + <h1>Speech Transcriber</h1> + </section> + + <footer> + <p>Created by <a href="https://www.github.com/nasrlol" target="_blank">nsrddyn</a>. All rights reserved © + 2024.</p> + </footer> +</body> + +</html>
\ No newline at end of file |
