update recipe modal

This commit is contained in:
Kenta420-Poom 2023-09-27 13:50:53 +07:00
parent 2b0590709c
commit ac45ca47d5
4 changed files with 110 additions and 12 deletions

View file

@ -18,13 +18,53 @@
<dialog class="modal" #detailModal>
<div class="modal-box w-11/12 max-w-5xl">
<h3 class="font-bold text-lg">Hello! {{ id }}</h3>
<p class="py-4">Click the button below to close</p>
<div class="modal-action">
<form method="dialog">
<!-- if there is a button, it will close the modal -->
<button class="btn">Close</button>
</form>
</div>
<h3 class="font-bold text-lg mb-3">{{ title }}</h3>
<form
class="flex flex-col gap-2"
[formGroup]="recipeDetail"
(ngSubmit)="save()"
>
<div class="flex flex-col gap-1">
<label>
<span class="text-base label-text">Product Code: </span>
</label>
<input
type="text"
class="w-full input input-sm input-bordered input-ghost"
formControlName="productCode"
/>
</div>
<div class="flex flex-col gap-1">
<label><span class="text-base label-text">Name: </span> </label>
<input
type="text"
class="w-full input input-sm input-bordered input-ghost"
formControlName="name"
/>
</div>
<div class="flex flex-col gap-1">
<label><span class="text-base label-text"> Other Name:</span> </label>
<input
type="text"
class="w-full input input-sm input-bordered input-ghost"
formControlName="otherName"
/>
</div>
<div class="flex flex-col gap-1">
<label><span class="text-base label-text"> Description:</span> </label>
<input
type="text"
class="w-full input input-sm input-bordered input-ghost"
formControlName="description"
/>
</div>
<div class="modal-action">
<button type="submit" class="btn">Save</button>
<form method="dialog">
<!-- if there is a button, it will close the modal -->
<button class="btn">Close</button>
</form>
</div>
</form>
</div>
</dialog>