Advertisement
Guest User

Untitled

a guest
Jul 7th, 2015
199
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.51 KB | None | 0 0
  1. <!DOCTYPE html>
  2. <html>
  3. <head>
  4. <!-- Latest compiled and minified CSS -->
  5. <link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.4/css/bootstrap.min.css">
  6. <title>Accueil</title>
  7. <script src="http://ajax.googleapis.com/ajax/libs/jquery/1.11.2/jquery.min.js"></script>
  8. <script>
  9. function boutonactive (){
  10.  
  11. document.getElementById("boutonrecompense").disabled=false;
  12.  
  13. }
  14.  
  15. function timer (){
  16.  
  17. window.setTimeout ( function () { boutonactive ()},3000);
  18.  
  19. }
  20.  
  21. function donnesgobase (){
  22.  
  23. var pseudo= document.getElementById('pseudotext').value;
  24. var ip="<?php echo $_SERVER['REMOTE_ADDR'];?>";
  25.  
  26. $.ajax({
  27.  
  28. url:"traitement.php?pseudo="+ pseudo +"&ip="+ ip
  29.  
  30. });
  31.  
  32. }
  33.  
  34. </script>
  35. </head>
  36.  
  37. <body>
  38.  
  39. <div class="container-fluid">
  40.  
  41. <div class="row" style="margin-top:40px">
  42.  
  43. <div class="col-md-4 col-md-offset-4">
  44. <button type="button" class="btn btn-info col-md-12" onClick="timer()">Clique ici pour voter !</button>
  45. </div>
  46. </div>
  47.  
  48. <div class="row" style="margin-top:40px">
  49.  
  50. <div class="col-md-4 col-md-offset-4">
  51. <input id="pseudotext" type="text" class="form-control" placeholder="Votre pseudo Minecraft !"></input>
  52. </div>
  53. </div>
  54.  
  55. <div class="row" style="margin-top:350px">
  56.  
  57. <div class="col-md-4 col-md-offset-4">
  58. <button type="button" id="boutonrecompense" class="btn btn-warning col-md-12" disabled="disabled" onClick="donnesgobase()">R&eacute;clamer ma r&eacute;compense ! </button>
  59. </div>
  60. </div>
  61.  
  62. </div>
  63.  
  64. </body>
  65.  
  66. </html>' '
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement