send-page

This commit is contained in:
Bechi 2014-04-16 10:52:13 -03:00
parent 8f15578bb4
commit 844fee49ad
2 changed files with 23 additions and 15 deletions

View File

@ -77,6 +77,10 @@ body {
border:0; border:0;
} }
.panel:hover {
background: #efefef;
}
.transactions .panel { .transactions .panel {
background: #ECECEC; background: #ECECEC;
} }

View File

@ -209,8 +209,9 @@
<!-- SEND --> <!-- SEND -->
<script type="text/ng-template" id="send.html"> <script type="text/ng-template" id="send.html">
<div class="send" data-ng-controller="SendController"> <div class="send" data-ng-controller="SendController">
<h2>{{title}}</h2> <h3>{{title}}</h3>
<button class="button primary expand round" type="button" ng-click="sendTest()">sendTest</button> <div class="row">
<div class="large-8 columns">
<form> <form>
<label for="address">To <label for="address">To
<input type="text" id="address" placeholder="Send to"> <input type="text" id="address" placeholder="Send to">
@ -222,9 +223,12 @@
<option>BTC</option> <option>BTC</option>
</select> </select>
</label> </label>
<button type="submit" class="btn btn-default">send</button> <button class="button primary round" type="button" ng-click="sendTest()">sendTest</button>
<button type="submit" class="button secondary round right">send</button>
</form> </form>
</div> </div>
</div>
</div>
</script> </script>
<!-- BACKUP --> <!-- BACKUP -->