-
Notifications
You must be signed in to change notification settings - Fork 2
/
demo.html
100 lines (85 loc) · 3.19 KB
/
demo.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
92
93
94
95
96
97
98
99
100
<html>
<head>
<meta http-equiv="content-type" content="text/html; charset=utf-8">
<title>Populate</title>
<link rel="stylesheet" href="demo.css" type="text/css" media="screen" charset="utf-8">
<script type="text/javascript" charset="utf-8" src="lib/jquery.js"></script>
<script type="text/javascript" charset="utf-8" src="src/jquery.populate.js"></script>
<script type="text/javascript" charset="utf-8" src="demo.js"></script>
</head>
<body>
<center><h1><a href="#" id="pop">Pop!</a></h1></center>
<form action="#" method="post" accept-charset="utf-8">
<fieldset id="name">
<label for="username">
<input type="text" name="user[username]" value="" id="username">
<span>username</span>
</label>
<label for="email">
<input type="text" name="user[email]" value="" id="email">
<span>email</span>
</label>
<label for="password">
<input type="password" name="user[password]" value="" id="password">
<span>password</span>
</label>
<label for="confirmation">
<input type="password" name="user[confirmation]" value="" id="confirmation">
<span>confirmation</span>
</label>
</fieldset>
<fieldset>
<label>
<input type="text" name="user[first_name]" value="" id="first_name">
<span>first name</span>
</label>
<label for="last_name">
<input type="text" name="user[last_name]" value="" id="last_name">
<span>last name</span>
</label>
<label for="website">
<input type="text" name="website" value="" id="website">
<span>website</span>
</label>
<label for="address">
<input type="text" name="user[address]" value="" id="address">
<span>address</span>
</label>
<label for="city">
<input type="text" name="user[city]" value="" id="city">
<span>city</span>
</label>
<label for="state">state
<select name="user[state]" id="state">
<option>choose</option>
<option value="OH">OH</option>
<option value="CA">CA</option>
<option value="AR">AR</option>
<option value="NY">NY</option>
<option value="NC">NC</option>
<option value="NV">NV</option>
<option value="IN">IN</option>
<option value="IL">IL</option>
<option value="KY">KY</option>
<option value="TN">TN</option>
<option value="WV">WV</option>
<option value="VA">VA</option>
<option value="MI">MI</option>
<option value="WI">WI</option>
</select>
</label>
<label>
<input type="text" name="favorite_number" value="" id="">
<span>favorite #</span>
</label>
</fieldset>
<fieldset>
<label for="notes" class="notes">
<textarea name="user[notes]" rows="4" cols="40"></textarea>
<span>notes</span>
</label>
</fieldset>
<p><input type="submit" value="Continue →"></p>
</form>
</body>
</html>