8 lines
346 B
HTML
8 lines
346 B
HTML
<form ng-submit="onSubmit()">
|
|
<input type="text" ng-model="title" placeholder="Title"><br>
|
|
<input type="text" ng-model="author" placeholder="Author"><br>
|
|
<tags-input ng-model="tags" placeholder="Tags"><br>
|
|
<textarea cols="30" rows="10" ng-model="content" placeholder="Content..."></textarea><br>
|
|
<input type="submit">
|
|
</form>
|