From 9850f2145cb5aeeab6607c2193393bc6468c67b6 Mon Sep 17 00:00:00 2001 From: Anthony Debucquoy Date: Mon, 4 Mar 2024 13:16:42 +0100 Subject: [PATCH] Fixing the login page availability To access the login page you need login.html. Then this page loads the login.js that generate the login.vue in the div#app (with the '#app') --- frontend/login.html | 11 +++++++++++ frontend/src/login.js | 2 +- 2 files changed, 12 insertions(+), 1 deletion(-) create mode 100644 frontend/login.html diff --git a/frontend/login.html b/frontend/login.html new file mode 100644 index 0000000..05192e0 --- /dev/null +++ b/frontend/login.html @@ -0,0 +1,11 @@ + + + + + Clyde - Login + + +
+ + + diff --git a/frontend/src/login.js b/frontend/src/login.js index 59eb2ea..3ca2456 100644 --- a/frontend/src/login.js +++ b/frontend/src/login.js @@ -3,4 +3,4 @@ import './assets/main.css' import { createApp } from 'vue' import App from './Login.vue' -createApp(App).mount('#login') +createApp(App).mount('#app')