form belum fix

This commit is contained in:
2025-05-28 07:20:01 +07:00
parent 692ffdf2f1
commit b397e09634
10 changed files with 13615 additions and 0 deletions

View File

@@ -0,0 +1,8 @@
<template>
<TextElement
name="email"
input-type="email"
:rules="['nullable', 'email']"
label="Email"
/>
</template>

View File

@@ -0,0 +1,3 @@
<template>
<TextElement name="username" label="Nama" />
</template>

View File

@@ -0,0 +1,3 @@
<template>
<TextElement name="password" input-type="password" label="Password" />
</template>

View File

@@ -0,0 +1,24 @@
<template>
<SelectElement
name="role"
:search="true"
:native="false"
input-type="search"
autocomplete="off"
label="Hak Akses"
:items="[
{
value: 0,
label: 'Administrator',
},
{
value: '1',
label: 'Manager',
},
{
value: '2',
label: 'Staff',
},
]"
/>
</template>