deleting unused components and restructuring
This commit is contained in:
13
nginx/vue/src/components/admin/Login.vue
Normal file
13
nginx/vue/src/components/admin/Login.vue
Normal file
@@ -0,0 +1,13 @@
|
||||
<script setup>
|
||||
import { ref, onMounted } from "vue";
|
||||
|
||||
const loggedIn = ref(false);
|
||||
</script>
|
||||
|
||||
<template>
|
||||
<div v-if="!loggedIn">
|
||||
<h1>login</h1>
|
||||
<textarea>Username</textarea>
|
||||
<textarea>Password</textarea>
|
||||
</div>
|
||||
</template>
|
||||
Reference in New Issue
Block a user