frontend: add /login and /register forms

This commit is contained in:
j3d1 2024-03-17 18:52:41 +01:00
parent bea56f101a
commit c4c49931a4
13 changed files with 3635 additions and 0 deletions

16
frontend/src/main.js Normal file
View file

@ -0,0 +1,16 @@
import {createApp} from 'vue'
import {BootstrapIconsPlugin} from 'bootstrap-icons-vue';
import App from './App.vue'
import './scss/toolshed.scss'
import router from './router'
import _nacl from 'js-nacl';
const app = createApp(App).use(BootstrapIconsPlugin);
_nacl.instantiate((nacl) => {
window.nacl = nacl
app.use(router).mount('#app')
});