15 lines
628 B
HTML
15 lines
628 B
HTML
<div ng-controller="infoadmin_external_image_create" style="margin-top:20px;">
|
|
<div>
|
|
Create new image. Enter name and full url for any image available in internet (eg. https://i.imgur.com/XXSSqDG.gif)
|
|
</div>
|
|
<div class="form-group">
|
|
<label>Name:</label>
|
|
<input type="text" class="form-control" ng-model="item.name"></input>
|
|
</div>
|
|
<div class="form-group">
|
|
<label>Url:</label>
|
|
<input type="text" class="form-control" ng-model="item.url"></input>
|
|
</div>
|
|
<input type="button" class="btn btn-success" ng-click="send()" value="create"></input>
|
|
</div>
|