Skip to content

Commit

Permalink
Merge pull request #253 from amosproj/feat/xd-153-fix
Browse files Browse the repository at this point in the history
feat(frontend): added labels to create-case-page
  • Loading branch information
Sabo2k authored Jul 13, 2024
2 parents 5e86870 + 9b4c177 commit 94ee806
Showing 1 changed file with 12 additions and 10 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -39,19 +39,21 @@
</ix-input-group>

<ix-input-group>
<span slot="input-start">Title:</span>
<label>Title</label>
<input type="text" name="title" [(ngModel)]="createCaseForm.title" required />
<div class="invalid-feedback">Please insert a title</div>
</ix-input-group>

<textarea
class="pl-2"
placeholder="Enter your Description"
name="text"
[(ngModel)]="createCaseForm.text"
required
></textarea>

<ix-input-group>
<label>Description</label>
<textarea
class="pl-2"

name="text"
[(ngModel)]="createCaseForm.text"
required
></textarea>
</ix-input-group>
<div class="flex flex-row gap-4">
<lib-date-dropdown-wrapper
[(ngModel)]="createCaseForm.dueDate"
Expand Down Expand Up @@ -106,7 +108,7 @@


<ix-input-group>
<span slot="input-start">Email:</span>
<label>Email</label>
<input
placeholder="[email protected]"
type="email"
Expand Down

0 comments on commit 94ee806

Please sign in to comment.