forked from alimsky/MagicInputs
-
Notifications
You must be signed in to change notification settings - Fork 0
/
test.html
74 lines (63 loc) · 1.74 KB
/
test.html
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
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
<!DOCTYPE html>
<html lang="en">
<head>
<title>Test for MagicFill</title>
<style>
input,select{
display:block;
clear:both;
margin: 15px;
}
body{
width:24em;
margin:0 auto;
}
label{
float:left;
margin: 15px 0;
height:20px;
line-height:20px;
}
input[type=radio]{
float:left;
margin-right:0.5em;
height:20px;
line-height:20px;
}
</style>
</head>
<body>
<block>
<a target="_blank" href="options.html">Go to options, but it wouldn't work here. :)</a>
<input type="text" class="required" />
<select id="param" name="just">
<option value="one">one</option>
<option value="etw">etw</option>
<option value="twe">twe</option>
<option value="twerj">twerj</option>
<option value="uwer">uwer</option>
<option value="vzv">vzv</option>
<option value="qqq">qqq</option>
<option value="wpwef">wpwef</option>
</select>
<input type="text" name="some_price" class="required" />
<input type="text" id="your_mail" class="required" />
<input type="text" id="your_mail_confirm" class="required" />
<input type="text" class="required" />
<input type="text" id="cc_number" class="required" />
<input type="text" id="cc_cvv" class="required" />
<input type="checkbox" name="ow_check" />
<input type="checkbox" name="ow_check" />
<input type="checkbox" name="ow_check" />
<input type="checkbox" name="ow_check" />
<input type="radio" name="rbt" value="rbt" />
<label for="rbt" value="wow">Wow</label>
<input type="radio" name="rbt" value="rbt2" />
<label for="rbt" value="wow">Wow</label>
<input type="radio" name="rbt" value="rbt" />
<label for="rbt" value="wow">Wow</label>
<input id="woww" type="radio" name="rbt" value="rbt" />
<label for="rbt" value="wow">Wow</label>
<input type="password" name="rbt" value="123123" />
</body>
</html>