aboutsummaryrefslogtreecommitdiffstats
path: root/gui/app/views/modal/imageDialog.html
blob: c568f2abae85089ee387c86d9aff4d08a751410d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
<div>

    <h4>Enter Remote Image Url</h4>
    <input type="text" ng-model="url" />

    <div style="text-align:center;margin-top:20px;">
        <button class="btn btn-default" ng-disabled=" url==null || url==''" ng-click="uploadCustomImageByUrl(url)">Upload</button>
    </div>

</div>


<style>
    input {
        border-radius: 10px;
        border: 1px solid #eeeeee;
        width: 100%;
    }
</style>