Files
mixtape/zero.Web/Setup/Steps/step-user.vue
T
2020-03-30 17:11:56 +02:00

44 lines
1.1 KiB
Vue

<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">
<input type="text" class="ui-input" maxlength="40" placeholder="What's your name?" />
</ui-property>
<ui-property label="Email" :vertical="true">
<input type="text" class="ui-input" placeholder="Your email will be used as your login" />
</ui-property>
<ui-property label="Password" :vertical="true">
<input type="password" class="ui-input" autocomplete="off" maxlength="1024" placeholder="As long as you want but at last 8 characters" />
</ui-property>
</div>
</template>
<script>
import UiProperty from 'zerocomponents/forms/property.vue'
import UiButton from 'zerocomponents/buttons/button.vue'
export default {
name: 'setupStepUser',
props: {
value: Object
},
components: { UiProperty, UiButton },
mounted ()
{
},
methods: {
}
}
</script>