| 
									
										
										
										
											2024-09-16 14:09:37 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  |                     <!-- Logs filter --> | 
					
						
							|  |  |  |                     <div class="card w-auto bg-light border-light card-body text-right" style="text-align: right;"> | 
					
						
							| 
									
										
										
										
											2024-10-07 07:42:54 +00:00
										 |  |  |                         <form method="POST" id="filter_form" class="filter-results" action="?page=logs"> | 
					
						
							| 
									
										
										
										
											2024-09-16 14:09:37 +00:00
										 |  |  |                             <label for="from_time">from</label> | 
					
						
							| 
									
										
										
										
											2024-10-04 11:18:28 +00:00
										 |  |  |                             <input type="date" id="from_time" name="from_time"<?php if (isset($_REQUEST['from_time'])) echo " value=\"" . htmlspecialchars($from_time) . "\"" ?> />
 | 
					
						
							| 
									
										
										
										
											2024-09-16 14:09:37 +00:00
										 |  |  |                             <label for="until_time">until</label> | 
					
						
							| 
									
										
										
										
											2024-10-04 11:18:28 +00:00
										 |  |  |                             <input type="date" id="until_time" name="until_time"<?php if (isset($_REQUEST['until_time'])) echo " value=\"" . htmlspecialchars($until_time) . "\"" ?> />
 | 
					
						
							|  |  |  |                             <input type="text" name="id" placeholder="user ID"<?php if (isset($_REQUEST['id'])) echo " value=\"" . htmlspecialchars($_REQUEST['id']) . "\"" ?> />
 | 
					
						
							|  |  |  |                             <input type="text" name="message" placeholder="message"<?php if (isset($_REQUEST['message'])) echo " value=\"" . htmlspecialchars($_REQUEST['message']) . "\"" ?> />
 | 
					
						
							| 
									
										
										
										
											2024-09-16 14:09:37 +00:00
										 |  |  |                             <input type="button" onclick="clearFilter()" value="clear" /> | 
					
						
							|  |  |  |                             <input type="submit" value="search" /> | 
					
						
							|  |  |  |                         </form> | 
					
						
							|  |  |  |                         <script> | 
					
						
							|  |  |  |                             function clearFilter() { | 
					
						
							|  |  |  |                                 document.getElementById("filter_form").reset(); | 
					
						
							|  |  |  |                                 const filterFields = document.querySelectorAll("#filter_form input"); | 
					
						
							|  |  |  |                                 filterFields.forEach(input => { | 
					
						
							|  |  |  |                                     if (input.type === 'text' ||input.type === 'date') { | 
					
						
							|  |  |  |                                         input.value = ''; | 
					
						
							|  |  |  |                                     } | 
					
						
							|  |  |  |                                 }); | 
					
						
							|  |  |  |                             } | 
					
						
							|  |  |  |                         </script> | 
					
						
							|  |  |  |                     </div> | 
					
						
							|  |  |  |                     <!-- /Logs filter --> |