Advertisement
Guest User

index

a guest
Aug 20th, 2019
555
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
HTML 1.29 KB | None | 0 0
  1. <div class="">
  2.  
  3.         <div class="">
  4.             <h1>Spotify Top Track Playlist Generator</h1>
  5.         </div>
  6.         <div class="">
  7.             <br />
  8.             <form action="/go" method="post">
  9.  
  10.  
  11.                     <h3>What time range would you like to use?</h3>
  12.                     <br />
  13.                     <h4>
  14.  
  15.                             <input type="radio" name="time_range" id="inlineCheckbox1" value="short_term" checked> Last Few Weeks
  16.                             <br />
  17.                             <input type="radio" name="time_range" id="inlineCheckbox2" value="medium_term"> Last Few Months
  18.                             <br />
  19.                             <input type="radio" name="time_range" id="inlineCheckbox3" value="long_term"> Last Few Years
  20.  
  21.                     </h4>
  22.                     <br />
  23.                     <h3>How many tracks do you want?</h3>
  24.                     <h4>
  25.                         <input type="range" min="3" max="15" value="5" name="num_tracks" step="1" onchange="showValue(this.value)" />
  26.                         <span id="range">5</span>
  27.                     </h4>
  28.                         <script type="text/javascript">
  29.                         function showValue(newValue)
  30.                         {
  31.                             document.getElementById("range").innerHTML=newValue;
  32.                         }
  33.                         </script>
  34.  
  35.                 <br />
  36.                 <div class="">
  37.  
  38.                     <center>
  39.                         <button type="submit" class="btn btn-danger spotify_button" id="" style=""><h4><i class="fab fa-spotify"></i> Create My Playlist</h4></button>
  40.                     </center>
  41.                 </div>
  42.  
  43.             </form>
  44.  
  45.     </div>
  46.  
  47. </div>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement