2020-03-27 01:17:22 +01:00
< template >
< div class = "setup-step setup-step-user" >
< h2 > welcome to zero </ h2 >
< p > First we need some basic credentials from you to create a login . This login is the solely < b > superadmin </ b > which is required to change critical application data .</ p >
< ui-property label = "Name" :vertical = "true" >
2020-04-03 16:45:47 +02:00
< input v-model = "value.user.name" type="text" class="ui-input" maxlength="40" placeholder="What's your name? It doesn't have to be your real name" />
2020-03-27 01:17:22 +01:00
</ ui-property >
< ui-property label = "Email" :vertical = "true" >
2020-04-03 16:45:47 +02:00
< input v-model = "value.user.email" type="text" class="ui-input" placeholder="Your email will be used as your login" />
2020-03-27 01:17:22 +01:00
</ ui-property >
< ui-property label = "Password" :vertical = "true" >
2020-04-03 16:45:47 +02:00
< input v-model = "value.user.password" type="password" class="ui-input" autocomplete="off" maxlength="1024" placeholder="From 8 characters to a galaxy far, far away" />
2020-03-27 01:17:22 +01:00
</ ui-property >
</ div >
</ template >
< script >
export default {
name : 'setupStepUser' ,
props : {
value : Object
},
mounted ()
{
},
methods : {
}
}
</ script >