Advertisement
MartinYanchev-99

HTML

Oct 13th, 2020
2,572
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
HTML 1.68 KB | None | 0 0
  1. <div class="flex items-center justify-center h-screen">
  2.    
  3.  
  4.     <div class=" w-full max-w-xl">
  5. <form  name="quiz" class="g-white shadow-md rounded p-20" "method="post">
  6. {% csrf_token %}
  7.     <h1 class="text-3xl text-center mb-5 ">{{exercise.name}}</h1>
  8.     <div class="shadow appearance-none border rounded w-full py-4 px-4 text-gray-700 leading-tight focus:outline-none focus:shadow-outline'">
  9.     <input class=" m-5 py-4 px-4" id="opt_1" type="radio" name="name" value="{{ opt_1 }}">
  10.     <label for="opt_1">{{exercise.opt_1}} </label>
  11.    
  12.     </div>
  13.    
  14.     <div class="shadow appearance-none border rounded w-full py-4 px-4 text-gray-700 leading-tight focus:outline-none focus:shadow-outline'">
  15.     <input class="m-5 py-4 px-4" id="opt_2" type="radio" name="name" value="{{ opt_2 }}">
  16.     <label for="opt_2">{{exercise.opt_2}} </label>
  17.        
  18. </div>
  19.     <div class="shadow appearance-none border rounded w-full py-4 px-4 text-gray-700 leading-tight focus:outline-none focus:shadow-outline'">
  20.     <input class="m-5 py-4 px-4" id="opt_3" type="radio" name="name" value="{{ opt_3 }}">
  21.     <label for="opt_3">{{exercise.opt_3}} </label>
  22.        
  23. </div>
  24.     <div class="shadow appearance-none border rounded w-full py-4 px-4 text-gray-700 leading-tight focus:outline-none focus:shadow-outline'">
  25.     <input class="m-5 py-4 px-4" id="opt_4" type="radio" name="name" value="gosho">
  26.     <label for="opt_4">{{exercise.opt_4}} </label>
  27.          
  28.      
  29. </div>
  30.    
  31.  
  32.     <button id="btn-result" class="mt-3   bg-indigo-500 hover:bg-indigo-700 text-white font-bold py-2 px-4 border border-blue-700 rounded"" type="button" >Check result</button>
  33.     <p id="result" ></p>
  34. </form>
  35. </div>
  36. </div>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement