summaryrefslogtreecommitdiff
path: root/controllers/login.js
diff options
context:
space:
mode:
Diffstat (limited to 'controllers/login.js')
-rw-r--r--controllers/login.js12
1 files changed, 12 insertions, 0 deletions
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;