added header phrase to login/register pricing modal
This commit is contained in:
@@ -1,6 +1,6 @@
|
||||
<template>
|
||||
<div id="login-register">
|
||||
<h2>{{ $t("materio.Please login or create a new account") }}</h2>
|
||||
<h2>{{ $t(header) }}</h2>
|
||||
<div class="wrapper">
|
||||
<section class="login">
|
||||
<h3>{{ $t("default.Login") }} </h3>
|
||||
@@ -27,7 +27,15 @@ export default {
|
||||
password:null,
|
||||
registerEmail:null
|
||||
}),
|
||||
props:['callbackargs', 'onLogedInBack', 'onRegisteredBack'],
|
||||
props:{
|
||||
header: {
|
||||
type: String,
|
||||
default: 'materio.Please login or create a new account'
|
||||
},
|
||||
callbackargs: Object,
|
||||
onLogedInBack: Function,
|
||||
onRegisteredBack: Function
|
||||
},
|
||||
methods: {
|
||||
...mapActions({
|
||||
userLogin: 'User/userLogin',
|
||||
|
Reference in New Issue
Block a user