From 014611a90130a85ff5360f7f64148c39d7d15818 Mon Sep 17 00:00:00 2001 From: "Zed A. Shaw" Date: Sun, 29 Jun 2025 13:42:09 -0400 Subject: [PATCH] Make the register/login pages link to eachother. --- public/login/index.html | 1 + tests/base_test.go | 2 ++ 2 files changed, 3 insertions(+) diff --git a/public/login/index.html b/public/login/index.html index 04b4f41..c04a523 100644 --- a/public/login/index.html +++ b/public/login/index.html @@ -33,6 +33,7 @@ +
Need an account? Click to Register.
diff --git a/tests/base_test.go b/tests/base_test.go index 4dd5828..649db3a 100644 --- a/tests/base_test.go +++ b/tests/base_test.go @@ -71,6 +71,8 @@ func TestStreamPage(t *testing.T) { func TestMain(m *testing.M) { data.Setup("sqlite3", "./db.sqlite3") + m.Run() + data.Shutdown() }