home page

This commit is contained in:
Bechi 2014-04-16 12:06:42 -03:00
commit 212b80b906
2 changed files with 15 additions and 5 deletions

View file

@ -129,17 +129,21 @@
<!-- HOME -->
<script type="text/ng-template" id="home.html">
<div class="home" data-ng-controller="HomeController">
<h2>{{title}}</h2>
<h3>Address</h3>
<div class="row">
<div class="large-6 columns">
<a class="panel db" ng-repeat="addr in addrs" ng-click="selectAddr(addr)">{{addr}} <span class="right"> &gt;</span></a>
</div>
<div class="large-6 columns">
<div class="large-3 columns line-dashed-v text-center">
<qrcode size="160" data="{{selectedAddr}}"></qrcode>
<p> 2.5432 BTC </p>
<p class="m10t"> <strong> 2.5432 BTC </strong> </p>
</div>
<div class="large-1 columns"> </div>
<div class="large-2 columns">
<p> Create a New <strong> Address </strong> </p>
<button class="secondary round expand" ng-click="newAddr()"> Create </button>
</div>
<button class="secondary round large-4 columns" ng-click="newAddr()"> New address</button>
</div>
</div>
</script>