aboutsummaryrefslogtreecommitdiff
path: root/quotes/public/index.html
diff options
context:
space:
mode:
authorMarvin Borner2020-10-01 17:33:08 +0200
committerMarvin Borner2020-10-01 17:33:08 +0200
commit91f4af6e9a3a5d770f98d4a5b75c729c18861cc1 (patch)
treeb18c2d59296a0b09cc9263a41534142a3f3f3cbf /quotes/public/index.html
parent417b247cf5b6e191ada3c3591cc002ebafc4dd3e (diff)
Some thingies
Diffstat (limited to 'quotes/public/index.html')
-rw-r--r--quotes/public/index.html6
1 files changed, 3 insertions, 3 deletions
diff --git a/quotes/public/index.html b/quotes/public/index.html
index abe85cc..0c7b327 100644
--- a/quotes/public/index.html
+++ b/quotes/public/index.html
@@ -14,13 +14,13 @@
<title>Zitate</title>
</head>
<body>
- <form class="pure-form pure-form-stacked" action="api/submit" method="post">
+ <form class="pure-form pure-form-stacked" action="api/add" method="post">
<fieldset>
<legend>Zitate</legend>
<label for="author">Author</label>
- <select name="author" id="author"></select>
+ <select name="author" id="author" required></select>
<label for="quote">Zitat</label>
- <input name="quote" type="text" id="quote" placeholder="Zitat" />
+ <input name="quote" type="text" id="quote" placeholder="Zitat" required />
<button type="submit" class="pure-button pure-button-primary">Hinzufügen</button>
</fieldset>
</form>