-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathindex.html
457 lines (440 loc) · 17.4 KB
/
index.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
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<meta http-equiv="X-UA-Compatible" content="ie=edge" />
<title>Where to put button on forms</title>
<link
rel="stylesheet"
href="https://cdnjs.cloudflare.com/ajax/libs/modern-normalize/0.5.0/modern-normalize.min.css"
/>
<link rel="stylesheet" href="css/uiux.css" />
</head>
<body>
<main class="container">
<h1 class="main-title">Where to put buttons on forms</h1>
<section class="how-to-align-primary-button">
<h2 id="align-the-primary-button">
<a href="#align-the-primary-button">Align the primary button to the left edge of the inputs</a>
</h2>
<article>
<form class="wrong">
<h3 class="form-title wrong-title">Right align button</h3>
<div class="wrapper name-wrapper">
<label for="name-input">name</label>
<input type="text" id="name-input" />
</div>
<div class="wrapper email-wrapper">
<label for="email-input">email</label>
<input type="text" id="email-input" />
</div>
<div class="wrapper country-wrapper">
<label for="country-input">country</label>
<input type="text" id="country-input" />
</div>
<button type="submit" class="btn btn-primary">primary button</button>
</form>
<form class="correct">
<h3 class="form-title correct-title">Left align button</h3>
<div class="wrapper name-wrapper">
<label for="name-input">name</label>
<input type="text" id="name-input" />
</div>
<div class="wrapper email-wrapper">
<label for="email-input">email</label>
<input type="text" id="email-input" />
</div>
<div class="wrapper country-wrapper">
<label for="country-input">country</label>
<input type="text" id="country-input" />
</div>
<button type="submit" class="btn btn-primary">primary button</button>
</form>
</article>
</section>
<section class="how-to-put-the-back-button">
<h2 id="put-the-back-button">
<a href="#put-the-back-button">Put the back button above the form</a>
</h2>
<article>
<form class="wrong">
<h3 class="form-title wrong-title">
Back button next <span class="break-line">to the primary button</span>
</h3>
<div class="wrapper name-wrapper">
<label for="name-input">name</label>
<input type="text" id="name-input" />
</div>
<div class="wrapper email-wrapper">
<label for="email-input">email</label>
<input type="text" id="email-input" />
</div>
<div class="wrapper country-wrapper">
<label for="country-input">country</label>
<input type="text" id="country-input" />
</div>
<div class="buttons">
<button type="submit" class="btn btn-primary">primary button</button>
<button class="btn btn-back"><span>‹</span> back button</button>
</div>
</form>
<form class="correct">
<h3 class="form-title correct-title">Back button above the form</h3>
<button class="btn btn-back"><span>‹</span> back button</button>
<div class="wrapper name-wrapper">
<label for="name-input">name</label>
<input type="text" id="name-input" />
</div>
<div class="wrapper email-wrapper">
<label for="email-input">email</label>
<input type="text" id="email-input" />
</div>
<div class="wrapper country-wrapper">
<label for="country-input">country</label>
<input type="text" id="country-input" />
</div>
<button type="submit" class="btn btn-primary">primary button</button>
</form>
</article>
</section>
<section class="how-to-put-tangentially-related-actions">
<h2 id="put-tangentially-related-actions">
<a href="#put-tangentially-related-actions">Put tangentially related actions above the form</a>
</h2>
<article>
<form class="wrong">
<h3 class="form-title wrong-title">
<code>Forgot password</code> <span class="break-line">link within the form</span>
</h3>
<div class="wrapper name-wrapper">
<label for="name-input">name</label>
<input type="text" id="name-input" />
</div>
<div class="wrapper email-wrapper">
<label for="email-input">email</label>
<input type="text" id="email-input" />
</div>
<div class="wrapper country-wrapper">
<a href="#" class="forgotpswd-link">forgot password</a>
<label for="country-input">country</label>
<input type="text" id="country-input" />
</div>
<div class="buttons">
<button type="submit" class="btn btn-primary">Login</button>
</div>
</form>
<form class="correct">
<h3 class="form-title correct-title">
<code>Forgot password</code> <span class="break-line">link outside the form</span>
</h3>
<a href="#" class="forgotpswd-link">forgot password</a>
<div class="wrapper name-wrapper">
<label for="name-input">name</label>
<input type="text" id="name-input" />
</div>
<div class="wrapper email-wrapper">
<label for="email-input">email</label>
<input type="text" id="email-input" />
</div>
<div class="wrapper country-wrapper">
<label for="country-input">country</label>
<input type="text" id="country-input" />
</div>
<button type="submit" class="btn btn-primary">Login</button>
</form>
</article>
</section>
<section class="how-to-place-extra-buttons">
<h2 id="place-extra-buttons">
<a href="#place-extra-buttons">Place extra buttons based on what they do</a>
</h2>
<section class="cancel-button">
<h3 id="put-cancel-button-below-primary-button">
<a href="#put-cancel-button-below-primary-button">Put the cancel button below the primary button</a>
</h3>
<article>
<form class="wrong">
<h3 class="form-title wrong-title">
Cancel button alongside <span class="break-line">the primary button</span>
</h3>
<div class="wrapper name-wrapper">
<label for="name-input">name</label>
<input type="text" id="name-input" />
</div>
<div class="wrapper email-wrapper">
<label for="email-input">email</label>
<input type="text" id="email-input" />
</div>
<div class="wrapper country-wrapper">
<label for="country-input">country</label>
<input type="text" id="country-input" />
</div>
<div class="buttons">
<button type="submit" class="btn btn-primary">primary</button>
<button class="btn btn-back btn-secondary">secondary</button>
<button class="btn btn-cancel">cancel</button>
</div>
</form>
<form class="correct">
<h3 class="form-title correct-title">
Cancel button underneath <span class="break-line">the primary button</span>
</h3>
<div class="wrapper name-wrapper">
<label for="name-input">name</label>
<input type="text" id="name-input" />
</div>
<div class="wrapper email-wrapper">
<label for="email-input">email</label>
<input type="text" id="email-input" />
</div>
<div class="wrapper country-wrapper">
<label for="country-input">country</label>
<input type="text" id="country-input" />
</div>
<div class="buttons">
<button type="submit" class="btn btn-primary">primary</button>
<button class="btn btn-back btn-secondary">secondary</button>
</div>
<button class="btn btn-cancel">cancel</button>
</form>
</article>
</section>
<section class="add-another-button">
<h3 id="put-add-another-button">
<a href="#put-add-another-button">Put the 'add another' button above the primary button</a>
</h3>
<article>
<form class="wrong">
<h3 class="form-title wrong-title">
<code>add another</code> button <span class="break-line">next to the primary button</span>
</h3>
<div class="wrapper name-wrapper">
<label for="name-input">Name of person</label>
<input type="text" id="name-input" />
</div>
<div class="buttons">
<button type="submit" class="btn btn-primary">Continue</button>
<button class="btn btn-back btn-secondary">Add another</button>
</div>
</form>
<form class="correct">
<h3 class="form-title correct-title">
<code>add another</code> button <span class="break-line">above primary button</span>
</h3>
<div class="wrapper name-wrapper">
<label for="name-input">Name of person</label>
<input type="text" id="name-input" />
</div>
<button class="btn btn-back btn-secondary">Add another</button>
<button type="submit" class="btn btn-primary">Continue</button>
</form>
</article>
</section>
<section class="save-and-exit-button">
<h3 id="put-save-and-exit-button">
<a href="#put-save-and-exit-button">Put the 'save and exit' button next to the primary button</a>
</h3>
<article>
<form class="wrong">
<h3 class="form-title wrong-title">
Buttons on separate rows
</h3>
<div class="wrapper name-wrapper">
<label for="name-input">Name of person</label>
<input type="text" id="name-input" />
</div>
<button class="btn btn-secondary">Save and exit</button>
<button type="submit" class="btn btn-primary">Continue</button>
</form>
<form class="correct">
<h3 class="form-title correct-title">
Both buttons on same rows
</h3>
<div class="wrapper name-wrapper">
<label for="name-input">Name of person</label>
<input type="text" id="name-input" />
</div>
<button type="submit" class="btn btn-primary">Continue</button>
<button class="btn btn-secondary">Save and exit</button>
</form>
</article>
</section>
</section>
<section class="how-to-put-the-button-next-to-the-input">
<h2 id="put-the-button-next-to-the-input">
<a href="#put-the-button-next-to-the-input">In some single field forms put the button next to the input</a>
</h2>
<article>
<form class="wrong">
<h3 class="form-title wrong-title">
Button below search box
</h3>
<div class="wrapper search-wrapper">
<label for="search-input">search</label>
<input type="search" id="search-input" />
</div>
<button type="submit" class="btn btn-primary">Login</button>
</form>
<form class="correct">
<h3 class="form-title correct-title">
Button next to search box
</h3>
<div class="search">
<div class="wrapper search-wrapper">
<label for="search-input">search</label>
<input type="search" id="search-input" />
</div>
<button type="submit" class="btn btn-primary btn-search">Login</button>
</div>
</form>
</article>
</section>
<section class="how-to-put-buttons-above-the-form">
<h2 id="how-to-put-buttons-above-the-form">
<a href="#how-to-put-buttons-above-the-form">Put buttons on multi select forms above the form</a>
</h2>
<article>
<form class="wrong">
<h3 class="form-title wrong-title">Multi-select buttons <span class="break-line">below the list</span></h3>
<button class="btn btn-primary">Continue</button>
<table>
<tbody>
<tr>
<td>
<input type="checkbox" name="check" />
</td>
<td>
<input type="text" />
</td>
<td>
<p>Lorem ipsum dolor</p>
</td>
</tr>
<tr>
<td>
<input type="checkbox" name="check" />
</td>
<td>
<input type="text" />
</td>
<td>
<p>Lorem ipsum dolor</p>
</td>
</tr>
<tr>
<td>
<input type="checkbox" name="check" />
</td>
<td>
<input type="text" />
</td>
<td>
<p>Lorem ipsum dolor</p>
</td>
</tr>
<tr>
<td>
<input type="checkbox" name="check" />
</td>
<td>
<input type="text" />
</td>
<td>
<p>Lorem ipsum dolor</p>
</td>
</tr>
<tr>
<td>
<input type="checkbox" name="check" />
</td>
<td>
<input type="text" />
</td>
<td>
<p>Lorem ipsum dolor</p>
</td>
</tr>
</tbody>
</table>
<div class="buttons">
<button class="btn btn-back btn-secondary">OK</button>
<button class="btn btn-back btn-secondary">Cancel</button>
<button class="btn btn-back btn-secondary">Abort</button>
</div>
</form>
<form class="correct">
<h3 class="form-title correct-title">
Multi-select buttons <span class="break-line">above the list</span>
</h3>
<button type="submit" class="btn btn-primary">Continue</button>
<div class="buttons">
<button class="btn btn-back btn-secondary">OK</button>
<button class="btn btn-back btn-secondary">Cancel</button>
<button class="btn btn-back btn-secondary">Abort</button>
</div>
<table>
<tbody>
<tr>
<td>
<input type="checkbox" name="check" />
</td>
<td>
<input type="text" />
</td>
<td>
<p>Lorem ipsum dolor</p>
</td>
</tr>
<tr>
<td>
<input type="checkbox" name="check" />
</td>
<td>
<input type="text" />
</td>
<td>
<p>Lorem ipsum dolor</p>
</td>
</tr>
<tr>
<td>
<input type="checkbox" name="check" />
</td>
<td>
<input type="text" />
</td>
<td>
<p>Lorem ipsum dolor</p>
</td>
</tr>
<tr>
<td>
<input type="checkbox" name="check" />
</td>
<td>
<input type="text" />
</td>
<td>
<p>Lorem ipsum dolor</p>
</td>
</tr>
<tr>
<td>
<input type="checkbox" name="check" />
</td>
<td>
<input type="text" />
</td>
<td>
<p>Lorem ipsum dolor</p>
</td>
</tr>
</tbody>
</table>
</form>
</article>
</section>
</main>
</body>
</html>