From 2611ded920a8345922346ed0d43e4efdd94401a1 Mon Sep 17 00:00:00 2001 From: Julien Dessaux Date: Thu, 27 Oct 2022 23:56:29 +0200 Subject: Began implementing middlewares, session and auth --- controllers/login.js | 12 ++++++++++++ 1 file changed, 12 insertions(+) create mode 100644 controllers/login.js (limited to 'controllers/login.js') diff --git a/controllers/login.js b/controllers/login.js new file mode 100644 index 0000000..bff312e --- /dev/null +++ b/controllers/login.js @@ -0,0 +1,12 @@ +function makeLoginController() { + return { + title: "Connection", + data: { + username: "", + password: "", + }, + errors: {}, + }; +} + +export default makeLoginController; -- cgit v1.2.3