-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtest.html
More file actions
33 lines (30 loc) · 1.81 KB
/
test.html
File metadata and controls
33 lines (30 loc) · 1.81 KB
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
<html>
<head>
<meta charset="UTF-8">
<meta name="author" content="Vector-IT">
<link rel="shortcut icon" href="icono.png" type="image/png">
<title>Vector Forms Test</title>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.12.4/jquery.min.js"></script>
<script src="vectorForms.js"></script>
</head>
<body>
<form class="vectorForm" action="resultado.php" method="POST">
<input type="text" name="Field1" class="vectorField1" placeholder="Campo 1"><br>
<input type="text" name="Field2" class="vectorField2" placeholder="Campo 2"><br>
<input type="text" name="Field3" class="vectorField3" placeholder="Campo 3"><br>
<input type="text" name="Field4" class="vectorField4" placeholder="Campo 4"><br>
<textarea name="Field5" class="vectorField5" placeholder="Campo 5"></textarea><br>
<input type="text" name="Field6" class="vectorField6" placeholder="Campo 6"><br>
<input type="text" name="Field7" class="vectorField7" placeholder="Campo 7"><br>
<input type="text" name="Field8" class="vectorField8" placeholder="Campo 8"><br>
<input type="text" name="Field9" class="vectorField9" placeholder="Campo 9"><br>
<input type="text" name="Field10" class="vectorField10" placeholder="Campo 10"><br>
<input type="text" name="Field11" class="vectorField11" placeholder="Campo 11"><br>
<input type="text" name="Field12" class="vectorField12" placeholder="Campo 12"><br>
<input type="text" name="Field13" class="vectorField13" placeholder="Campo 13"><br>
<input type="text" name="Field14" class="vectorField14" placeholder="Campo 14"><br>
<input type="text" name="Field15" class="vectorField15" placeholder="Campo 15"><br>
<button type="submit">Aceptar</button>
</form>
</body>
</html>