Du kan inte välja fler än 25 ämnen Ämnen måste starta med en bokstav eller siffra, kan innehålla bindestreck ('-') och vara max 35 tecken långa.

invoice-print.html 5.9KB

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