Wallet/public/views/add.html

26 lines
924 B
HTML
Raw Normal View History

2016-08-16 17:45:20 -03:00
<ion-view view-title="Add wallet">
<ion-nav-buttons side="primary">
<a href ui-sref="tabs.home" class="button button-clear button-dark">Close</a>
</ion-nav-buttons>
2015-05-08 09:35:33 -03:00
2016-08-16 17:45:20 -03:00
<ion-content>
<ion-list>
<ion-item class="item-remove-animate item-icon-right" type="item-text-wrap" ui-sref="create">
<h2 translate>Create new wallet</h2>
<i class="icon ion-chevron-right icon-accessory"></i>
</ion-item>
2015-05-08 09:35:33 -03:00
2016-08-16 17:45:20 -03:00
<ion-item class="item-remove-animate item-icon-right" type="item-text-wrap" ui-sref="join">
<h2 translate>Join shared wallet</h2>
<i class="icon ion-chevron-right icon-accessory"></i>
</ion-item>
2015-05-08 09:35:33 -03:00
2016-08-16 17:45:20 -03:00
<ion-item class="item-remove-animate item-icon-right" type="item-text-wrap" ui-sref="import">
<h2 translate>Import wallet</h2>
<i class="icon ion-chevron-right icon-accessory"></i>
</ion-item>
</ion-list>
</ion-content>
</ion-view>
2015-03-06 12:00:10 -03:00