Created
December 25, 2023 22:24
-
-
Save alexisselorm/b869500e5607aca6e0112307f6adb6b6 to your computer and use it in GitHub Desktop.
App component template file
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<div> | |
<form [formGroup]="form" (ngSubmit)="onSubmit()"> | |
<div> | |
<label for="title">Title</label> | |
<input name="title" id="title" type="text" formControlName="title" /> | |
</div> | |
<div> | |
<label for="body">Body</label> | |
<ckeditor | |
[editor]="editor" | |
name="body" | |
id="body" | |
formControlName="body" | |
></ckeditor> | |
</div> | |
<button>Post Blog</button> | |
</form> | |
</div> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment