-
Notifications
You must be signed in to change notification settings - Fork 12
Expand file tree
/
Copy pathnew.html
More file actions
26 lines (25 loc) · 919 Bytes
/
new.html
File metadata and controls
26 lines (25 loc) · 919 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
<form class="form-horizontal well" ng-submit="addLinkAndRedirect()">
<div class="form-group">
<label class="col-sm-2 control-label">Title</label>
<div class="col-sm-10">
<input type="text" class="form-control" placeholder="Title" ng-model="newLink.title">
</div>
</div>
<div class="form-group">
<label class="col-sm-2 control-label">Url</label>
<div class="col-sm-10">
<input type="url" class="form-control" placeholder="Url" ng-model="newLink.url">
</div>
</div>
<div class="form-group">
<label class="col-sm-2 control-label">Description</label>
<div class="col-sm-10">
<input type="text" class="form-control" placeholder="Description" ng-model="newLink.description">
</div>
</div>
<div class="form-group">
<div class="col-sm-offset-2 col-sm-10">
<button type="submit" class="btn btn-default">Add Link</button>
</div>
</div>
</form>