|
|
|
@ -55,26 +55,24 @@ onMounted(async () => {
|
|
|
|
|
</script> |
|
|
|
|
|
|
|
|
|
<template> |
|
|
|
|
<div class="flex flex-row w-full justify-center mt-16"> |
|
|
|
|
<a-card :loading="isLoading" class="w-[500px] !mx-auto !mt-100px shadow-md"> |
|
|
|
|
<GeneralNocoIcon /> |
|
|
|
|
<a-card :loading="isLoading" class="w-[500px] !mx-auto !mt-100px shadow-md"> |
|
|
|
|
<GeneralNocoIcon /> |
|
|
|
|
|
|
|
|
|
<h3 class="text-3xl text-center font-semibold mt-8 mb-2">{{ $t('activity.createProject') }}</h3> |
|
|
|
|
<h3 class="text-3xl text-center font-semibold mt-8 mb-2">{{ $t('activity.createProject') }}</h3> |
|
|
|
|
|
|
|
|
|
<a-form ref="form" :model="formState" name="basic" layout="vertical" autocomplete="off" @finish="createProject"> |
|
|
|
|
<a-form-item :label="$t('labels.projName')" name="title" :rules="nameValidationRules" class="my-10 mx-10"> |
|
|
|
|
<a-input v-model:value="formState.title" name="title" class="nc-metadb-project-name" /> |
|
|
|
|
</a-form-item> |
|
|
|
|
<a-form ref="form" :model="formState" name="basic" layout="vertical" autocomplete="off" @finish="createProject"> |
|
|
|
|
<a-form-item :label="$t('labels.projName')" name="title" :rules="nameValidationRules" class="my-10 mx-10"> |
|
|
|
|
<a-input v-model:value="formState.title" name="title" class="nc-metadb-project-name" /> |
|
|
|
|
</a-form-item> |
|
|
|
|
|
|
|
|
|
<a-form-item style="text-align: center" class="mt-2"> |
|
|
|
|
<a-button type="primary" html-type="submit"> |
|
|
|
|
<div class="flex items-center"> |
|
|
|
|
<MaterialSymbolsRocketLaunchOutline class="mr-1" /> |
|
|
|
|
{{ $t('general.create') }} |
|
|
|
|
</div> |
|
|
|
|
</a-button> |
|
|
|
|
</a-form-item> |
|
|
|
|
</a-form> |
|
|
|
|
</a-card> |
|
|
|
|
</div> |
|
|
|
|
<a-form-item style="text-align: center" class="mt-2"> |
|
|
|
|
<a-button type="primary" html-type="submit"> |
|
|
|
|
<div class="flex items-center"> |
|
|
|
|
<MaterialSymbolsRocketLaunchOutline class="mr-1" /> |
|
|
|
|
{{ $t('general.create') }} |
|
|
|
|
</div> |
|
|
|
|
</a-button> |
|
|
|
|
</a-form-item> |
|
|
|
|
</a-form> |
|
|
|
|
</a-card> |
|
|
|
|
</template> |
|
|
|
|