diff --git a/cmd/run.go b/cmd/run.go
index b3a521a..a5da512 100644
--- a/cmd/run.go
+++ b/cmd/run.go
@@ -34,6 +34,8 @@ func run(flags []string) {
fmt.Println("Run `TastyBites status` or use the flag -skipMigrations")
os.Exit(1)
}
+ } else {
+ fmt.Println("WARNING: Skipping migrations! This can lead to errors, or even data loss!")
}
api.Serve(api.Config{
diff --git a/front/src/App.svelte b/front/src/App.svelte
index 439ed0c..445c44a 100644
--- a/front/src/App.svelte
+++ b/front/src/App.svelte
@@ -1,17 +1,18 @@
+
Table booking
+
+
+
\ No newline at end of file
diff --git a/front/src/pages/PageContact.svelte b/front/src/pages/PageContact.svelte
index db4e95b..bafab99 100644
--- a/front/src/pages/PageContact.svelte
+++ b/front/src/pages/PageContact.svelte
@@ -20,9 +20,11 @@
function validateName() {
nameValid = name.length > 1
}
+
function validateEmail() {
emailValid = email.length > 1
}
+
function validateMessage() {
messageValid = message.length > minMessageLength
}
@@ -67,9 +69,11 @@
{#await formMessage then formMessage}
{#if formMessage}
{formMessage}
+
{/if}
{:catch error}
{error.message}
+
{/await}
@@ -88,6 +92,8 @@
{/if}
+
+