diff options
author | Marvin Borner | 2020-10-19 20:25:42 +0200 |
---|---|---|
committer | Marvin Borner | 2020-10-19 20:25:42 +0200 |
commit | 8cac8a68132b82964c4ca3fda8e21fbb06bfbc8c (patch) | |
tree | b85f44d1cdbbf2c927bd6623fb6e008438681a0f | |
parent | e2c8fea877c156863dbf84f5593acf02894f56b5 (diff) |
Little oopsie
-rw-r--r-- | quotes/public/index.html | 2 | ||||
-rw-r--r-- | quotes/public/script.js | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/quotes/public/index.html b/quotes/public/index.html index b91d1e1..b2e4fa2 100644 --- a/quotes/public/index.html +++ b/quotes/public/index.html @@ -23,7 +23,7 @@ <form class="pure-form pure-form-stacked" action="api/add" method="post"> <fieldset> <legend>Zitate</legend> - <label for="author">Author</label> + <label for="author">Autor</label> <select name="author" id="author" required></select> <label for="quote">Zitat</label> <input name="quote" type="text" id="quote" placeholder="Zitat" required /> diff --git a/quotes/public/script.js b/quotes/public/script.js index 4c19953..cf3229a 100644 --- a/quotes/public/script.js +++ b/quotes/public/script.js @@ -3,7 +3,7 @@ const classes = ["TGM13.1", "TGM13.2", "TGTM13.1", "TGI13.1", "TGI13.2", "teache dropdown.insertAdjacentHTML( "beforeend", - '<option disabled value="" selected="true" disabled>Author auswählen...</option>', + '<option disabled value="" selected="true" disabled>Autor auswählen...</option>', ); dropdown.insertAdjacentHTML("beforeend", `<option disabled value="">--${classes[0]}--</option>`); |