File: 2d-test01.html

package info (click to toggle)
libcgi-formbuilder-perl 3.03.01-1
  • links: PTS
  • area: main
  • in suites: etch, etch-m68k
  • size: 960 kB
  • ctags: 250
  • sloc: perl: 5,116; makefile: 7; sh: 7
file content (40 lines) | stat: -rw-r--r-- 1,957 bytes parent folder | download
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
<html>
<title>User Info</title>
Please update your info and hit "Submit".
<script type="text/javascript"><!-- hide from old browsers
function validate (form) {
    var alertstr = '';
    var invalid  = 0;

    // name: standard text, hidden, password, or textarea box
    var name = form.elements['name'].value;
    if (name == null || ! name.match(/^[a-zA-Z]+$/)) {
        alertstr += '- Invalid entry for the "Name" field\n';
        invalid++;
    }
    if (invalid > 0 || alertstr != '') {
        if (! invalid) invalid = 'The following';   // catch for programmer error
        alert(''+invalid+' error(s) were encountered with your submission:'+'\n\n'
                +alertstr+'\n'+'Please correct these fields and try again.');
        // reset counters
        alertstr = '';
        invalid  = 0;
        return false;
    }
    return true;  // all checked ok
}
//-->
</script>
<form action="TEST" method="get" onsubmit="return validate(this);"><input id="_submitted" name="_submitted" type="hidden" value="1" />
<tr class="required invalid"><th>Name</th><td><input id="name" name="name" type="text" />  </td></tr>
<tr class="optional invalid"><th>Best Color</th><td><input checked="checked" id="color_red" name="color" type="radio" value="red" /> <label for="color_red">red</label>
<input id="color_green" name="color" type="radio" value="green" /> <label for="color_green">green</label>
<input id="color_blue" name="color" type="radio" value="blue" /> <label for="color_blue">blue</label>
  </td></tr>
<tr class="optional invalid"><th>Sex</th><td><input id="sex_M" name="sex" type="radio" value="M" /> <label for="sex_M">Male</label>
<input id="sex_F" name="sex" type="radio" value="F" /> <label for="sex_F">Female</label>
  </td></tr>
<tr class="optional invalid"><th>Size</th><td><input id="size" name="size" type="text" value="42" />  </td></tr>

<input id="_submit" name="_submit" type="submit" value="No esta una button del resetto" />