<!--End of Modal-->

<div class="modal fade" id="myModalsignedit" tabindex="-1" role="dialog" aria-labelledby="myModalLabel" aria-hidden="true" data-keyboard="false" data-backdrop="static">
     <div class="modal-dialog">
        <div class="modal-content">
           <div class="modal-header">
             <button type="button" class="close" data-dismiss="modal"><span aria-hidden="true">&times;</span><span class="sr-only">Close</span></button>
         <p class="modal-title" id="myModalLabel" style="color:green;">Add New Event</p>
      </div>
      <div class="modal-body" style="background-color:#fff;">   
                   
                        <form method="POST" action="../functions/update_event_function.php">
                        <?php 
$id = $_GET['event_id'];
$e = new Event();
$e->loadEventUpdate($id);
?>
                           <div class="form-group">
                              <label for="event_name">Event Name:</label>
                              <input type="text" class="form-control" name="event_name" placeholder="Enter Event Name" value="<?php 
echo $e->event_name;
?>
" required>
                              <input type="hidden" class="form-control" name="event_id" value="<?php 
echo $id;
?>
"required>
                            </div>

                            <BUTTON type="submit" class="btn btn-primary">Update</BUTTON>
                           <hr/>