Advertisement
Chalkie83

Untitled

Oct 30th, 2021
93
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
HTML 1.08 KB | None | 0 0
  1. <form method="POST" action="?page=fws_fixture_admin" id="newFixtures">
  2. <div class="table-responsive">  
  3.     <table class="table table-bordered" id="dynamic_field" style="width:100%;">  
  4.         <thead>
  5.             <td>Home Team Name</td>
  6.             <td>Away Team Name</td>
  7.             <td>Postponed? Type 'true'</td>
  8.             <td>Kick Off Date and Time</td>
  9.             <td>Venue</td>
  10.             <td>Action</td>
  11.         </thead>
  12.        <tbody>
  13.          <tr>  
  14.              <td><?php echo $teamdrophome; ?> </td>
  15.              <td><?php echo $teamdropaway; ?> </td>
  16.              <td><input type="text" name="postponed[]" placeholder="Type true if game is postponed" class="form-control name_list" /></td>
  17.              <td><input type="datetime-local" name="datetime[]" class="form-control name_list" ></td>
  18.              <td><input type="text" name="location[]" placeholder="Location" class="form-control name_list" /></td>
  19.              <td><button type="button" name="add" id="add" class="btn btn-success">Add More</button></td>  
  20.          </tr>  
  21.         </tbody>
  22.     </table>  
  23.     <input type="submit" class="button-primary" name="submitFixtures" value="Submit" />
  24.   </div>
  25. </form>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement