-
Notifications
You must be signed in to change notification settings - Fork 5
/
test.html
91 lines (91 loc) · 3.58 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
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
<!DOCTYPE html>
<html>
<head>
<title>PForm Test</title>
<meta charset="UTF-8" />
<link href="css/pform.css" media="all" rel="stylesheet" type="text/css" />
</head>
<body>
<div class="pf-form">
<div class="pf-element pf-heading">
<h1>PForm Test</h1>
<p>Do you have what it takes?</p>
</div>
<div class="pf-element">
<span class="pf-label">This is Easy</span>
<input class="pf-field" type="text" />
</div>
<div class="pf-element">
<span class="pf-label">This is Too</span>
<span class="pf-note">Only one thing is different.</span>
<input class="pf-field" type="text" />
</div>
<div class="pf-element">
<span class="pf-label">This is a Little Harder</span>
<div class="pf-group">
<div class="pf-field">
Let's see if you can pull it off.<br />
It'll take some knowledge.<br />
Hope you studied.<br />
<input type="text" />
</div>
</div>
</div>
<fieldset class="pf-group">
<legend>CHANGE PLACES!</legend>
<div class="pf-element pf-heading">
<p>You shouldn't have too much trouble in here.</p>
</div>
<div class="pf-element pf-full-width">
<span class="pf-label">
As long as you
<span class="pf-note">
studied hard.
</span>
</span>
<span class="pf-field" style="float: right;">
Cause I'm way over here.<br />And you have to float me to get me over here.
</span>
</div>
<div class="pf-element pf-buttons pf-centered">
If I had a nickel for every button here,
<input class="pf-button" type="button" value="I'd have" />
<input class="pf-button" type="button" value="A dime!" />
</div>
</fieldset>
<div class="pf-element">
<label>
<span class="pf-label">Click me and the box must focus!</span>
<span class="pf-note">Oh and no IDs here.</span>
<input class="pf-field" type="text" value="I'm the box." />
</label>
<input class="pf-field" type="button" value="And I'm a button." />
</div>
<div class="pf-element">
<label for="box">
<span class="pf-label">Click me and the box must focus!</span>
<span class="pf-note">You can use IDs here.</span>
</label>
<label><input class="pf-field" type="checkbox" /> Am I in your way? Click me and the checkbox must toggle!</label>
<br />
<input class="pf-field" id="box" type="text" value="I'm the box." />
</div>
<div class="pf-element pf-full-width">
<span class="pf-label">Whoa Curveball! <span class="pf-required">*</span></span>
<span class="pf-field pf-full-width"><textarea rows="3" cols="10" style="width: 100%">Hint: I have 3 rows, 10 cols, and 100% width.</textarea></span>
</div>
<div class="pf-element">
<div class="pf-group">
<div class="pf-field">Alright, this one is the last hard one. I promise. And I don't make promises I can't keep. Seriously, you can trust me. What would I have to gain by lying to you? Seriously, it hurts that you would doubt me at all!</div>
</div>
</div>
<div class="pf-element">
If you're happy and you know it
</div>
<div class="pf-element pf-buttons">
<input class="pf-button" type="button" value="Clap your hands." />
<input class="pf-button" type="button" value="Sit quietly." />
</div>
</div>
</body>
</html>