invoice-print.html 4.8 KB

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