Compare commits

...

2 Commits

Author SHA1 Message Date
15d2426ce6 Merge pull request 'Fix mixing old and new syntaxes error' (#11) from development into main
Some checks failed
Build Docker image / build (push) Failing after 40s
Build Docker image / deploy (push) Has been skipped
Build Docker image / verify (push) Has been skipped
Reviewed-on: #11
2025-06-28 00:36:08 +02:00
Roman Krček
83a2985a46 Fix mixing old and new syntaxes error 2025-06-28 00:35:47 +02:00
2 changed files with 2 additions and 2 deletions

View File

@@ -24,7 +24,7 @@
{#if showForm} {#if showForm}
<form <form
on:submit={handleSubmit} onsubmit={handleSubmit}
autocomplete="off" autocomplete="off"
class="flex w-full flex-col space-y-4 rounded border border-gray-300 bg-white p-8 shadow-none" class="flex w-full flex-col space-y-4 rounded border border-gray-300 bg-white p-8 shadow-none"
> >

View File

@@ -40,7 +40,7 @@
{#if showForm} {#if showForm}
<form <form
on:submit={handleSubmit} onsubmit={handleSubmit}
autocomplete="off" autocomplete="off"
enctype="multipart/form-data" enctype="multipart/form-data"
class="flex w-full flex-col space-y-4 rounded border border-gray-300 bg-white p-8 shadow-none" class="flex w-full flex-col space-y-4 rounded border border-gray-300 bg-white p-8 shadow-none"