aboutsummaryrefslogtreecommitdiff
path: root/views/csrf.templ
diff options
context:
space:
mode:
Diffstat (limited to 'views/csrf.templ')
-rw-r--r--views/csrf.templ7
1 files changed, 7 insertions, 0 deletions
diff --git a/views/csrf.templ b/views/csrf.templ
new file mode 100644
index 0000000..2bb3545
--- /dev/null
+++ b/views/csrf.templ
@@ -0,0 +1,7 @@
+package views
+
+import "github.com/labstack/echo/v4"
+
+templ CSRF() {
+ <input type="hidden" name={echo.HeaderXCSRFToken} value={ ctx.Value("csrf").(string) }/>
+}