Blame view

frontend/web/js/validation/demo/file_input.html 1.51 KB
18b850c7   Administrator   Importers CRUD
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
  <!DOCTYPE html>
  <html lang="en">
  <head>
  	<meta charset="utf-8">
  	<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="../dist/jquery.validate.js"></script>
  	<script src="../dist/additional-methods.js"></script>
  	<script>
  	$(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>