diff options
author | LarsVomMars | 2020-10-01 16:48:23 +0200 |
---|---|---|
committer | LarsVomMars | 2020-10-01 16:48:23 +0200 |
commit | c0469923b81368d087746a0789fec416ecdec43c (patch) | |
tree | 85485162adf07781b8eb0c19b37a9f34ec4e7320 /quotes/public/index.html | |
parent | 11ec7d944ad240ddf696ee808a0121eeda13d493 (diff) | |
parent | ce6a00fa25bd12774fa86ee384e840565ecf965b (diff) |
Merge
Diffstat (limited to 'quotes/public/index.html')
-rw-r--r-- | quotes/public/index.html | 30 |
1 files changed, 30 insertions, 0 deletions
diff --git a/quotes/public/index.html b/quotes/public/index.html new file mode 100644 index 0000000..abe85cc --- /dev/null +++ b/quotes/public/index.html @@ -0,0 +1,30 @@ +<!DOCTYPE html> +<html> + <head> + <meta charset="UTF-8" /> + <meta name="viewport" content="width=device-width, initial-scale=1" /> + <link + rel="stylesheet" + href="https://unpkg.com/purecss@2.0.3/build/pure-min.css" + integrity="sha384-cg6SkqEOCV1NbJoCu11+bm0NvBRc8IYLRGXkmNrqUBfTjmMYwNKPWBTIKyw9mHNJ" + crossorigin="anonymous" + /> + <link rel="stylesheet" href="style.css" type="text/css" media="all" /> + + <title>Zitate</title> + </head> + <body> + <form class="pure-form pure-form-stacked" action="api/submit" method="post"> + <fieldset> + <legend>Zitate</legend> + <label for="author">Author</label> + <select name="author" id="author"></select> + <label for="quote">Zitat</label> + <input name="quote" type="text" id="quote" placeholder="Zitat" /> + <button type="submit" class="pure-button pure-button-primary">Hinzufügen</button> + </fieldset> + </form> + + <script src="script.js" charset="utf-8"></script> + </body> +</html> |