bitcoin-atm
bitcoin atm for pyc inc.
git clone https://9o.is/git/bitcoin-atm.git
Receipt.html
(1490B)
1 <wz-step screen="Receipt">
2 <div class="top-area no-help-btn padding-top-20">
3 <div id="receipt-slot">
4 <div id="receipt-holder">
5 <div id="receipt">
6 <img src="/img/logo-text.png" style="width:170px"/><br/>
7 <h7>Receipt</h7>
8 <table>
9 <tr>
10 <td>bitcoins</td>
11 <td>{{ fsm.data.bitcoins }}</td>
12 </tr>
13 <tr>
14 <td>purchased</td>
15 <td>{{ fsm.data.currencySymbol + fsm.data.total }}</td>
16 </tr>
17 <tr>
18 <td>address</td>
19 <td>{{ fsm.data.address }}</td>
20 </tr>
21 <tr>
22 <td>txid</td>
23 <td>{{ fsm.data.txid }}</td>
24 </tr>
25 <tr>
26 <td>date</td>
27 <td>{{ fsm.data.prettyDate }}</td>
28 </tr>
29 <tr>
30 <td>time</td>
31 <td>{{ fsm.data.prettyTime }}</td>
32 </tr>
33 <tr>
34 <td>location</td>
35 <td>{{ fsm.data.chimera }}</td>
36 </tr>
37 </table>
38 </div>
39 </div>
40 </div>
41 </div>
42 <div class="low-area">
43 <button ng-click="unwrapInput('receipt-email')" class="btn btn-primary solo-btn small">Email Receipt</button>
44 <button ng-click="nextScreen(true)" class="btn solo-btn small gray">Finish</button>
45 </div>
46
47 <span data-lift="embed?what=/templates-hidden/input/receipt-email"></span>
48 </wz-step>