File tree Expand file tree Collapse file tree 3 files changed +10
-19
lines changed Expand file tree Collapse file tree 3 files changed +10
-19
lines changed Original file line number Diff line number Diff line change 8
8
"login" : " ログイン" ,
9
9
"logout" : " ログアウト" ,
10
10
"ok" : " OK" ,
11
- "save" : " 保存する"
11
+ "save" : " 保存する" ,
12
+ "verify" : " 認証する"
12
13
},
13
14
"error" : {
14
15
"default" : " 何らかのエラーが発生しました。時間をおいて再度お試しください。"
45
46
"password" : " パスワード" ,
46
47
"password_rules" : " パスワードは6文字以上で設定してください" ,
47
48
"password_not_acceptable" : " パスワードが条件を満たしていません" ,
48
- "password_not_same" : " パスワードが一致していません"
49
+ "password_not_same" : " パスワードが一致していません" ,
50
+ "verification_code" :" 認証コード"
49
51
}
50
52
},
51
53
"agree_terms" : {
Original file line number Diff line number Diff line change 80
80
<v-snackbar v-model =" error" :timeout =" 5000" top color =" #C01B61" >
81
81
{{ $t('common.general.error.default') }}
82
82
</v-snackbar >
83
- <v-dialog v-model =" completion" max-width =" 460px" >
84
- <v-card class =" DialogCard" >
85
- <v-container class =" DialogCardContentContainer" >
86
- {{ $t('pages.user_signup.success.message') }}
87
- </v-container >
88
- <v-card-actions class =" DialogCardButtons px-4" >
89
- <base-action-button
90
- :text =" $t('pages.user_signup.success.go_back_to_top')"
91
- theme =" border"
92
- class =" my-3"
93
- @click =" $router.push('/')"
94
- />
95
- </v-card-actions >
96
- </v-card >
97
- </v-dialog >
98
83
</div >
99
84
</template >
100
85
@@ -166,7 +151,10 @@ export default Vue.extend({
166
151
.then (() => {
167
152
this .completion = true
168
153
this .loading = false
169
- this .$router .push (' /user/verify' )
154
+ this .$router .push ({
155
+ name: ' user-verify' ,
156
+ params: { email: this .email },
157
+ })
170
158
})
171
159
.catch (() => {
172
160
this .error = true
Original file line number Diff line number Diff line change @@ -73,7 +73,7 @@ export default Vue.extend({
73
73
layout: ' background' ,
74
74
data() {
75
75
return {
76
- email: ' ' ,
76
+ email: this . $route . params . email ,
77
77
verification_code: ' ' ,
78
78
loading: false ,
79
79
error: false ,
@@ -114,6 +114,7 @@ export default Vue.extend({
114
114
}
115
115
.SignIn-Item {
116
116
margin : 20px 0 ;
117
+ display : flex ;
117
118
}
118
119
.SignIn-ButtonOuter {
119
120
justify-content : space-between ;
You can’t perform that action at this time.
0 commit comments