-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathedit.html
21 lines (21 loc) · 1.08 KB
/
edit.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
<section data-ng-controller="ArticlesController" data-ng-init="findOne()">
<form class="form-horizontal col-md-6" role="form" data-ng-submit="update()">
<div class="form-group">
<label mean-token="'edit-title'" for="title" class="col-md-2 control-label">Title</label>
<div class="col-md-10">
<input type="text" class="form-control" data-ng-model="article.title" id="title" placeholder="Title" required>
</div>
</div>
<div class="form-group">
<label mean-token="'edit-content'" for="content" class="col-md-2 control-label">Content</label>
<div class="col-md-10">
<textarea data-ng-model="article.content" id="content" cols="30" rows="10" placeholder="Content" class="form-control" required></textarea>
</div>
</div>
<div class="form-group">
<div class="col-md-offset-2 col-md-10">
<button mean-token="'edit-submit'" type="submit" class="btn btn-default">Submit</button>
</div>
</div>
</form>
</section>