summary refs log tree commit diff stats
diff options
context:
space:
mode:
-rw-r--r--templates/template.html6
1 files changed, 3 insertions, 3 deletions
diff --git a/templates/template.html b/templates/template.html
index 5f56372..5c0c84f 100644
--- a/templates/template.html
+++ b/templates/template.html
@@ -176,7 +176,7 @@
                 {{ end }}
 
                 {{ .Text }}
-                <form action="/toggle" method="POST">
+                <form action="toggle" method="POST">
                     <input type="hidden" name="id" value="{{ .ID }}" />
                     <button type="submit" />
                 </form>
@@ -184,13 +184,13 @@
             {{ end }}
         </ul>
 
-        <form action="/create" method="POST">
+        <form action="create" method="POST">
             <div class="input-container">
                 <input type="text" id="newItem" name="newItem" tabindex="0"/>
             </div>
         </form>
 
-        <form action="/delete" method="POST">
+        <form action="delete" method="POST">
             <button type="submit" class="delete-button">Delete Selected Items</button>
         </form>