Skip to content

Instantly share code, notes, and snippets.

@alexisselorm
Created December 25, 2023 22:24
Show Gist options
  • Save alexisselorm/b869500e5607aca6e0112307f6adb6b6 to your computer and use it in GitHub Desktop.
Save alexisselorm/b869500e5607aca6e0112307f6adb6b6 to your computer and use it in GitHub Desktop.
App component template file
<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