abel

abel / create-new.template.html

Last active 3 months ago

Like 0

abel revised this gist 10 months ago · 8006e41

No changes

abel revised this gist 10 months ago · e3de0f3

1 file changed, 17 insertions

create-new.template.html (file created)
@@ -0,0 +1,17 @@
1 + <div class="bg-foreground w-full">
2 + <!-- HEADER -->
3 + <vex-header [headerData]="headerData" [projectName]="projectNameCtrl" [showErrors]="showErrorsCtrl"
4 + (submitEvent)="formSubmit()"></vex-header>
5 + <!-- END HEADER -->
6 + <div class="container max-w-[900px] bg-foreground">
7 + <form [formGroup]="mainForm">
8 + <div class="flex flex-col gap-12 mt-16">
9 +
10 + <vex-project-details [projectDetails]="projectDetailsGroup"></vex-project-details>
11 +
12 + <vex-project-notes [projectDetails]="projectDetailsGroup"></vex-project-notes>
13 +
14 + </div>
15 + </form>
16 + </div>
17 + </div>