mirror of
https://github.com/nagisa77/OpenIsle.git
synced 2026-03-06 03:50:47 +08:00
Add login and signup pages with hidden menu
This commit is contained in:
17
open-isle-cli/src/views/LoginPageView.vue
Normal file
17
open-isle-cli/src/views/LoginPageView.vue
Normal file
@@ -0,0 +1,17 @@
|
||||
<template>
|
||||
<div class="login-page">
|
||||
<h1>Login</h1>
|
||||
</div>
|
||||
</template>
|
||||
|
||||
<script>
|
||||
export default {
|
||||
name: 'LoginPageView'
|
||||
}
|
||||
</script>
|
||||
|
||||
<style scoped>
|
||||
.login-page {
|
||||
padding: 20px;
|
||||
}
|
||||
</style>
|
||||
17
open-isle-cli/src/views/SignupPageView.vue
Normal file
17
open-isle-cli/src/views/SignupPageView.vue
Normal file
@@ -0,0 +1,17 @@
|
||||
<template>
|
||||
<div class="signup-page">
|
||||
<h1>Sign Up</h1>
|
||||
</div>
|
||||
</template>
|
||||
|
||||
<script>
|
||||
export default {
|
||||
name: 'SignupPageView'
|
||||
}
|
||||
</script>
|
||||
|
||||
<style scoped>
|
||||
.signup-page {
|
||||
padding: 20px;
|
||||
}
|
||||
</style>
|
||||
Reference in New Issue
Block a user