Advertisement
Guest User

Untitled

a guest
Nov 10th, 2016
118
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 6.05 KB | None | 0 0
  1. <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
  2. <html xmlns="http://www.w3.org/1999/xhtml">
  3.  
  4. <head>
  5. <meta name="viewport" content="width=device-width" />
  6. <meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
  7. <title>Good Virtual Goods Invoice</title>
  8. <style>
  9. .body-wrap,body{background-color:#f6f6f6}.footer,.footer a{color:#999}.aligncenter,.btn-primary{text-align:center}*,h1,h2,h3{font-family:"Helvetica Neue",Helvetica,Arial,"Lucida Grande",sans-serif}body,html,table{margin:0;padding:0}.content,.content-wrap{padding:20px}img{max-width:100%}body{-webkit-font-smoothing:antialiased;-webkit-text-size-adjust:none;width:100%!important;height:100%;line-height:1.6}table td{vertical-align:top}.body-wrap{width:100%}.container{display:block!important;max-width:600px!important;margin:0 auto!important;clear:both!important}.clear,.footer{clear:both}.content{max-width:600px;margin:0 auto;display:block}.main{background:#fff;border:1px solid #e9e9e9;border-radius:3px}.content-block{padding:0 0 20px}.header{width:100%;margin-bottom:20px}.footer{width:100%;padding:20px}.footer a,.footer p,.footer td,.footer unsubscribe{font-size:12px}.column-left,.column-right{float:left;width:50%}h1,h2,h3{color:#000;margin:40px 0 0;line-height:1.2;font-weight:400}h1{font-size:32px;font-weight:500}h2{font-size:24px}h3{font-size:18px}h4{font-size:14px;font-weight:600}ol,p,ul{margin-bottom:10px;font-weight:400}ol li,p li,ul li{margin-left:5px;list-style-position:inside}a{color:#348eda;text-decoration:underline}.alert a,.btn-primary{text-decoration:none}.btn-primary{color:#FFF;background-color:#348eda;border:solid #348eda;border-width:10px 20px;line-height:2;font-weight:700;cursor:pointer;display:inline-block;border-radius:5px;text-transform:uppercase}.alert,.alert a{color:#fff;font-weight:500;font-size:16px}.last{margin-bottom:0}.first{margin-top:0}.padding{padding:10px 0}.alignright{text-align:right}.alignleft{text-align:left}.alert{padding:20px;text-align:center;border-radius:3px 3px 0 0}.alert.alert-warning{background:#ff9f00}.alert.alert-bad{background:#d0021b}.alert.alert-good{background:#68b90f}.invoice{margin:40px auto;text-align:left;width:80%}.invoice td{padding:5px 0}.invoice .invoice-items{width:100%}.invoice .invoice-items td{border-top:#eee 1px solid}.invoice .invoice-items .total td{border-top:2px solid #333;border-bottom:2px solid #333;font-weight:700}@media only screen and (max-width:640px){.container,.invoice{width:100%!important}h1,h2,h3,h4{font-weight:600!important;margin:20px 0 5px!important}h1{font-size:22px!important}h2{font-size:18px!important}.content,.content-wrapper{padding:10px!important}h3{font-size:32px!important;font-weight:700!important;margin-top:0!important}}hr{border:0;background-color:#f6f6f6;height:1px}tr{padding:0 0 20px}.wildego{background:#fff;border:1px solid #e9e9e9;border-radius:3px;padding:10px 0;display:inline-block}.wildego h7{padding:0 10px;font-size:14px}.a{padding-left:5px;padding-right:5px}
  10. </style>
  11. </head>
  12.  
  13. <body>
  14. <table class="body-wrap">
  15. <tr>
  16. <td></td>
  17. <td class="container" width="600">
  18. <div class="content">
  19. <table class="main" width="100%" cellpadding="0" cellspacing="0">
  20. <tr>
  21. <td class="content-wrap">
  22.  
  23. {{-- $info = ['firstname' => 'Luis', 'lastname' => 'Bizarro', 'username' => 'xkgaming14', 'password' => 'YoloSwag1996', 'item' => 'Basic Accounts (20,000 IP) EUW', 'price' => '14', 'invoice' => 'abcefghijklmnopqrstu'] --}}
  24.  
  25. <table width="100%" cellpadding="0" cellspacing="0">
  26. <tr>
  27. <td class="content-block" style="text-align:center;">
  28. <img src="{{ wildego_url('/images/logo_inv.png') }}" width="500px">
  29. <h4>Good Virtual Goods Invoice</h4>
  30. <hr>
  31. </td>
  32. </tr>
  33. <tr style="text-align:left">
  34. <td class="content-block a"><small>Hi {{ $info['person'] }} the account you bought at Good Virtual Goods is here, in this email you will find all the information about the account and the information of the buy.</small></td>
  35. </tr>
  36. <tr style="text-align:left">
  37. <td class="content-block a"><h4>Your account:</h4><small>USERNAME: {{ $info['username'] }}<br>PASSWORD: {{ $info['password'] }}</small></td>
  38. </tr>
  39. <tr style="text-align:left">
  40. <td class="content-block a">
  41. <h4>Payment Information: <small>(Invoice code: {{ $info['invoice'] }})</small></h4>
  42. <table style="width:100%;">
  43. <tr>
  44. <td><b>Item</b></td>
  45. <td style="text-align:right;"><b>Quantity</b></td>
  46. <td style="text-align:right;"><b>Price</b></td>
  47. </tr>
  48. <tr>
  49. <td>{{ $info['item'] }}</td>
  50. <td style="text-align:right;">x1</td>
  51. <td style="text-align:right;">{{ $info['price'] }}€</td>
  52. </tr>
  53. <tr>
  54. <td colspan="2" style="text-align:right;"><i>Total Price</i></td>
  55. <td style="text-align:right;">{{ $info['price'] }}€</td>
  56. </tr>
  57. </table>
  58. </td>
  59. </tr>
  60. <tr style="text-align:center;">
  61. <td class="content-block">
  62. <hr>
  63. <br>
  64. <small>
  65. Now that you've all the information you can change the account information by clicking on the link below.
  66. </small>
  67. <br><br><a class="btn-primary" href="http://leagueoflegends.com/">Change your account details</a></td>
  68. </tr>
  69. <tr>
  70. </tr>
  71. </table>
  72. </td>
  73. </tr>
  74. </table>
  75. <div class="footer">
  76. <table width="100%">
  77. <tr>
  78. <td class="aligncenter content-block">Copyright &copy; by Good Virtual Goods {{ date('Y') }}.</td>
  79. </tr>
  80. </table>
  81. </div>
  82. </div>
  83. </td>
  84. <td></td>
  85. </tr>
  86. </table>
  87. </body>
  88. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement