invoice-print.html 4.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166
  1. <!DOCTYPE html>
  2. <html lang="en">
  3. <head>
  4. <meta charset="utf-8">
  5. <meta http-equiv="X-UA-Compatible" content="IE=edge">
  6. <title>AdminLTE 3 | Invoice Print</title>
  7. <!-- Tell the browser to be responsive to screen width -->
  8. <meta name="viewport" content="width=device-width, initial-scale=1">
  9. <!-- Google Font: Source Sans Pro -->
  10. <link rel="stylesheet" href="https://fonts.googleapis.com/css?family=Source+Sans+Pro:300,400,400i,700&display=fallback">
  11. <!-- Font Awesome -->
  12. <link rel="stylesheet" href="../../plugins/fontawesome-free/css/all.min.css">
  13. <!-- Theme style -->
  14. <link rel="stylesheet" href="../../dist/css/adminlte.min.css">
  15. </head>
  16. <body>
  17. <div class="wrapper">
  18. <!-- Main content -->
  19. <section class="invoice">
  20. <!-- title row -->
  21. <div class="row">
  22. <div class="col-12">
  23. <h2 class="page-header">
  24. <i class="fas fa-globe"></i> AdminLTE, Inc.
  25. <small class="float-right">Date: 2/10/2014</small>
  26. </h2>
  27. </div>
  28. <!-- /.col -->
  29. </div>
  30. <!-- info row -->
  31. <div class="row invoice-info">
  32. <div class="col-sm-4 invoice-col">
  33. From
  34. <address>
  35. <strong>Admin, Inc.</strong><br>
  36. 795 Folsom Ave, Suite 600<br>
  37. San Francisco, CA 94107<br>
  38. Phone: (804) 123-5432<br>
  39. Email: info@almasaeedstudio.com
  40. </address>
  41. </div>
  42. <!-- /.col -->
  43. <div class="col-sm-4 invoice-col">
  44. To
  45. <address>
  46. <strong>John Doe</strong><br>
  47. 795 Folsom Ave, Suite 600<br>
  48. San Francisco, CA 94107<br>
  49. Phone: (555) 539-1037<br>
  50. Email: john.doe@example.com
  51. </address>
  52. </div>
  53. <!-- /.col -->
  54. <div class="col-sm-4 invoice-col">
  55. <b>Invoice #007612</b><br>
  56. <br>
  57. <b>Order ID:</b> 4F3S8J<br>
  58. <b>Payment Due:</b> 2/22/2014<br>
  59. <b>Account:</b> 968-34567
  60. </div>
  61. <!-- /.col -->
  62. </div>
  63. <!-- /.row -->
  64. <!-- Table row -->
  65. <div class="row">
  66. <div class="col-12 table-responsive">
  67. <table class="table table-striped">
  68. <thead>
  69. <tr>
  70. <th>Qty</th>
  71. <th>Product</th>
  72. <th>Serial #</th>
  73. <th>Description</th>
  74. <th>Subtotal</th>
  75. </tr>
  76. </thead>
  77. <tbody>
  78. <tr>
  79. <td>1</td>
  80. <td>Call of Duty</td>
  81. <td>455-981-221</td>
  82. <td>El snort testosterone trophy driving gloves handsome</td>
  83. <td>$64.50</td>
  84. </tr>
  85. <tr>
  86. <td>1</td>
  87. <td>Need for Speed IV</td>
  88. <td>247-925-726</td>
  89. <td>Wes Anderson umami biodiesel</td>
  90. <td>$50.00</td>
  91. </tr>
  92. <tr>
  93. <td>1</td>
  94. <td>Monsters DVD</td>
  95. <td>735-845-642</td>
  96. <td>Terry Richardson helvetica tousled street art master</td>
  97. <td>$10.70</td>
  98. </tr>
  99. <tr>
  100. <td>1</td>
  101. <td>Grown Ups Blue Ray</td>
  102. <td>422-568-642</td>
  103. <td>Tousled lomo letterpress</td>
  104. <td>$25.99</td>
  105. </tr>
  106. </tbody>
  107. </table>
  108. </div>
  109. <!-- /.col -->
  110. </div>
  111. <!-- /.row -->
  112. <div class="row">
  113. <!-- accepted payments column -->
  114. <div class="col-6">
  115. <p class="lead">Payment Methods:</p>
  116. <img src="../../dist/img/credit/visa.png" alt="Visa">
  117. <img src="../../dist/img/credit/mastercard.png" alt="Mastercard">
  118. <img src="../../dist/img/credit/american-express.png" alt="American Express">
  119. <img src="../../dist/img/credit/paypal2.png" alt="Paypal">
  120. <p class="text-muted well well-sm shadow-none" style="margin-top: 10px;">
  121. Etsy doostang zoodles disqus groupon greplin oooj voxy zoodles, weebly ning heekya handango imeem plugg dopplr
  122. jibjab, movity jajah plickers sifteo edmodo ifttt zimbra.
  123. </p>
  124. </div>
  125. <!-- /.col -->
  126. <div class="col-6">
  127. <p class="lead">Amount Due 2/22/2014</p>
  128. <div class="table-responsive">
  129. <table class="table">
  130. <tr>
  131. <th style="width:50%">Subtotal:</th>
  132. <td>$250.30</td>
  133. </tr>
  134. <tr>
  135. <th>Tax (9.3%)</th>
  136. <td>$10.34</td>
  137. </tr>
  138. <tr>
  139. <th>Shipping:</th>
  140. <td>$5.80</td>
  141. </tr>
  142. <tr>
  143. <th>Total:</th>
  144. <td>$265.24</td>
  145. </tr>
  146. </table>
  147. </div>
  148. </div>
  149. <!-- /.col -->
  150. </div>
  151. <!-- /.row -->
  152. </section>
  153. <!-- /.content -->
  154. </div>
  155. <!-- ./wrapper -->
  156. <script>
  157. window.addEventListener("load", window.print());
  158. </script>
  159. </body>
  160. </html>