mirror of
https://github.com/kokonect-link/cherrypick
synced 2024-11-01 07:35:57 +09:00
wip
This commit is contained in:
parent
0df6f5a253
commit
7f7fdbd678
@ -4,7 +4,7 @@
|
|||||||
<h1>%i18n:common.tags.mk-error.title%</h1>
|
<h1>%i18n:common.tags.mk-error.title%</h1>
|
||||||
<p class="text">
|
<p class="text">
|
||||||
{{ '%i18n:common.tags.mk-error.description%'.substr(0, '%i18n:common.tags.mk-error.description%'.indexOf('{')) }}
|
{{ '%i18n:common.tags.mk-error.description%'.substr(0, '%i18n:common.tags.mk-error.description%'.indexOf('{')) }}
|
||||||
<a @click="location.reload()">{{ '%i18n:common.tags.mk-error.description%'.match(/\{(.+?)\}/)[1] }}</a>
|
<a @click="reload">{{ '%i18n:common.tags.mk-error.description%'.match(/\{(.+?)\}/)[1] }}</a>
|
||||||
{{ '%i18n:common.tags.mk-error.description%'.substr('%i18n:common.tags.mk-error.description%'.indexOf('}') + 1) }}
|
{{ '%i18n:common.tags.mk-error.description%'.substr('%i18n:common.tags.mk-error.description%'.indexOf('}') + 1) }}
|
||||||
</p>
|
</p>
|
||||||
<button v-if="!troubleshooting" @click="troubleshooting = true">%i18n:common.tags.mk-error.troubleshoot%</button>
|
<button v-if="!troubleshooting" @click="troubleshooting = true">%i18n:common.tags.mk-error.troubleshoot%</button>
|
||||||
@ -29,6 +29,11 @@ export default Vue.extend({
|
|||||||
mounted() {
|
mounted() {
|
||||||
document.title = 'Oops!';
|
document.title = 'Oops!';
|
||||||
document.documentElement.style.background = '#f8f8f8';
|
document.documentElement.style.background = '#f8f8f8';
|
||||||
|
},
|
||||||
|
methods: {
|
||||||
|
reload() {
|
||||||
|
location.reload();
|
||||||
|
}
|
||||||
}
|
}
|
||||||
});
|
});
|
||||||
</script>
|
</script>
|
||||||
|
@ -15,6 +15,7 @@ import post from './api/post';
|
|||||||
import notify from './api/notify';
|
import notify from './api/notify';
|
||||||
|
|
||||||
import MkIndex from './views/pages/index.vue';
|
import MkIndex from './views/pages/index.vue';
|
||||||
|
import MkSignup from './views/pages/signup.vue';
|
||||||
import MkUser from './views/pages/user.vue';
|
import MkUser from './views/pages/user.vue';
|
||||||
import MkSelectDrive from './views/pages/selectdrive.vue';
|
import MkSelectDrive from './views/pages/selectdrive.vue';
|
||||||
import MkDrive from './views/pages/drive.vue';
|
import MkDrive from './views/pages/drive.vue';
|
||||||
@ -45,6 +46,7 @@ init((launch) => {
|
|||||||
// Routing
|
// Routing
|
||||||
app.$router.addRoutes([
|
app.$router.addRoutes([
|
||||||
{ path: '/', name: 'index', component: MkIndex },
|
{ path: '/', name: 'index', component: MkIndex },
|
||||||
|
{ path: '/signup', name: 'signup', component: MkSignup },
|
||||||
{ path: '/i/drive', component: MkDrive },
|
{ path: '/i/drive', component: MkDrive },
|
||||||
{ path: '/i/drive/folder/:folder', component: MkDrive },
|
{ path: '/i/drive/folder/:folder', component: MkDrive },
|
||||||
{ path: '/selectdrive', component: MkSelectDrive },
|
{ path: '/selectdrive', component: MkSelectDrive },
|
||||||
|
57
src/web/app/mobile/views/pages/signup.vue
Normal file
57
src/web/app/mobile/views/pages/signup.vue
Normal file
@ -0,0 +1,57 @@
|
|||||||
|
<template>
|
||||||
|
<div class="signup">
|
||||||
|
<h1>Misskeyをはじめる</h1>
|
||||||
|
<p>いつでも、どこからでもMisskeyを利用できます。もちろん、無料です。</p>
|
||||||
|
<div class="form">
|
||||||
|
<p>新規登録</p>
|
||||||
|
<div>
|
||||||
|
<mk-signup/>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</template>
|
||||||
|
|
||||||
|
<script lang="ts">
|
||||||
|
import Vue from 'vue';
|
||||||
|
export default Vue.extend({
|
||||||
|
mounted() {
|
||||||
|
document.documentElement.style.background = '#293946';
|
||||||
|
}
|
||||||
|
});
|
||||||
|
</script>
|
||||||
|
|
||||||
|
<style lang="stylus" scoped>
|
||||||
|
.signup
|
||||||
|
padding 16px
|
||||||
|
margin 0 auto
|
||||||
|
max-width 500px
|
||||||
|
|
||||||
|
h1
|
||||||
|
margin 0
|
||||||
|
padding 8px
|
||||||
|
font-size 1.5em
|
||||||
|
font-weight normal
|
||||||
|
color #c3c6ca
|
||||||
|
|
||||||
|
& + p
|
||||||
|
margin 0 0 16px 0
|
||||||
|
padding 0 8px 0 8px
|
||||||
|
color #949fa9
|
||||||
|
|
||||||
|
.form
|
||||||
|
background #fff
|
||||||
|
border solid 1px rgba(0, 0, 0, 0.2)
|
||||||
|
border-radius 8px
|
||||||
|
overflow hidden
|
||||||
|
|
||||||
|
> p
|
||||||
|
margin 0
|
||||||
|
padding 12px 20px
|
||||||
|
color #555
|
||||||
|
background #f5f5f5
|
||||||
|
border-bottom solid 1px #ddd
|
||||||
|
|
||||||
|
> div
|
||||||
|
padding 16px
|
||||||
|
|
||||||
|
</style>
|
Loading…
Reference in New Issue
Block a user