Advertisement
Guest User

Untitled

a guest
Jan 22nd, 2020
82
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.20 KB | None | 0 0
  1. <?php
  2. include 'included.php';
  3. ?>
  4.  
  5. <style>
  6. .test{
  7. width:100%;
  8. }
  9. </style>
  10. <script src="https://js.stripe.com/v3/"></script>
  11.  
  12. <div class="container test">
  13. <form action="charge" method="post" id="payment-form">
  14. <div class="row justify-content-md-center">
  15. <div class="col-md-auto test">
  16. <div class="form-group">
  17. <label for="exampleInputEmail1">Email address</label>
  18. <input type="email" class="form-control" id="exampleInputEmail1" aria-describedby="emailHelp" placeholder="Enter email">
  19. <small id="emailHelp" class="form-text text-muted">We'll never share your email with anyone else.</small>
  20. </div>
  21. </div>
  22. </div>
  23. <div class="form-group">
  24. <label for="exampleInputPassword1">Password</label>
  25. <input type="password" class="form-control" id="exampleInputPassword1" placeholder="Password">
  26. </div>
  27. <div class="form-check">
  28. <!--<input type="checkbox" class="form-check-input" id="exampleCheck1"> Im
  29. <label class="form-check-label" for="exampleCheck1">Check me out</label>not a robot :)-->
  30. </div>
  31. <button type="submit" class="btn btn-primary">Buy now!</button>
  32. </form>
  33. </div>
  34.  
  35.  
  36. <?php
  37. include 'footer.php';
  38. ?>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement