Guest User

Untitled

a guest
Apr 1st, 2018
122
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.46 KB | None | 0 0
  1. <!doctype html>
  2. <html>
  3. <head>
  4. <meta charset="utf-8">
  5. <title>BetaSMS API Form Method</title>
  6. <style type="text/css">
  7. body
  8. {
  9. margin:0;
  10. padding:0;
  11. font:14px Arial, Helvetica, sans-serif;
  12. }
  13. form
  14. {
  15. background-color:#F5F5F5;
  16. padding:30px;
  17. display:table;
  18. margin:10px auto;
  19. border-radius:5px;
  20. }
  21. form p
  22. {
  23. padding:0;
  24. color:#464646;
  25. }
  26. form input,form textarea
  27. {
  28. padding:8px 5px;
  29. width:100%;
  30. border:1px solid #ccc;
  31. border-radius:5px;
  32. }
  33. form input[type="submit"]
  34. {
  35. width:auto;
  36. float:right;
  37. margin:5px 0 5px 5px;
  38. padding:10px 15px;
  39. }
  40. form input[type="submit"]:active
  41. {
  42. font-weight:bold;
  43. }
  44. </style>
  45. </head>
  46. <body>
  47. <form method="post" action="betasms_api.php">
  48. <p>Email/Username : </p>
  49. <input type="email" class="login-username" placeholder="email" name="username"/>
  50. <p>Password : </p>
  51. <input type="password" placeholder="password" name="password"/>
  52. <p>Recipient(s) : ( example: 234803..., 234802...)</p>
  53. <input type="text" placeholder="Recipients" name="mobiles"/>
  54. <p>Sender : (example : GIT-SMS) max length : <b>11</b></p>
  55. <input type="text" placeholder="Sender" name="sender" maxlength="11"/>
  56. <p>Message : max length (<b id="chars-left-message">160</b>) </p>
  57. <textarea placeholder="Message" name="message" rows="7" maxlength="160"></textarea>
  58. <input type="submit" value="Send"/>
  59. </form>
  60. </body>
  61. </html>
Add Comment
Please, Sign In to add comment