22 lines
796 B
HTML
22 lines
796 B
HTML
<ion-view>
|
|
<ion-nav-bar class="bar-royal">
|
|
<ion-nav-back-button>
|
|
<i class="icon ion-ios-arrow-thin-left"></i>
|
|
</ion-nav-back-button>
|
|
</ion-nav-bar>
|
|
<ion-content ng-controller="preferencesBwsUrlController">
|
|
|
|
<div class="row no-border">
|
|
<div class="col col-90">
|
|
<label class="item item-input item-stacked-label no-border">
|
|
<span class="input-label" transalate>Wallet Service URL</span>
|
|
<input type="text" id="bwsurl" type="text" name="bwsurl" ng-model="bwsurl">
|
|
</label>
|
|
</div>
|
|
<div class="col">
|
|
<i class="icon ion-ios-reload" ng-click="resetDefaultUrl()"></i>
|
|
</div>
|
|
</div>
|
|
<button class="button button-block button-balanced" ng-click="save()" translate>Save</button>
|
|
</ion-content>
|
|
</ion-view>
|