Compare commits
2 Commits
| Author | SHA1 | Date |
|---|---|---|
|
|
b0cd6db616 | 2 years ago |
|
|
dd8d5903c7 | 2 years ago |
File diff suppressed because it is too large
Load Diff
@ -0,0 +1 @@
|
|||||||
|
$red: red;
|
||||||
@ -0,0 +1,32 @@
|
|||||||
|
<script>
|
||||||
|
export default {
|
||||||
|
name: "login",
|
||||||
|
data() {
|
||||||
|
return {
|
||||||
|
|
||||||
|
}
|
||||||
|
},
|
||||||
|
methods: {
|
||||||
|
|
||||||
|
},
|
||||||
|
beforeDestroy() {
|
||||||
|
|
||||||
|
},
|
||||||
|
}
|
||||||
|
|
||||||
|
</script>
|
||||||
|
|
||||||
|
<template>
|
||||||
|
<div class="card">
|
||||||
|
<h2>Login</h2>
|
||||||
|
<form>
|
||||||
|
<input type="text" name="Username" autofocus placeholder="Username">
|
||||||
|
<input type="password" name="Password" placeholder="Password">
|
||||||
|
</form>
|
||||||
|
</div>
|
||||||
|
</template>
|
||||||
|
|
||||||
|
<style lang="scss" scoped>
|
||||||
|
@import '../assets/_shared.scss';
|
||||||
|
|
||||||
|
</style>
|
||||||
@ -0,0 +1,12 @@
|
|||||||
|
<script setup>
|
||||||
|
import Login from '../components/Login.vue';
|
||||||
|
</script>
|
||||||
|
|
||||||
|
<template>
|
||||||
|
<div id="Home">
|
||||||
|
<Login />
|
||||||
|
</div>
|
||||||
|
</template>
|
||||||
|
|
||||||
|
<style scoped>
|
||||||
|
</style>
|
||||||
Loading…
Reference in New Issue