|
Revision 1020, 1.1 kB
(checked in by kake, 21 months ago)
|
|
Rewrote the HTML of the edit page to use <div>s instead of tables, and to be vaguely more sane in general.
|
-
Property svn:eol-style set to
native
-
Property svn:keywords set to
Author Date Id Revision
|
| Line | |
|---|
| 1 | <fieldset id="openguides_information"> |
|---|
| 2 | <legend>About your edit</legend> |
|---|
| 3 | |
|---|
| 4 | <div class="edit_form_group" id="username_group"> |
|---|
| 5 | <label for="username"> |
|---|
| 6 | Your username (<a href="preferences.cgi">set it</a>): |
|---|
| 7 | </label> |
|---|
| 8 | <div class="edit_box"> |
|---|
| 9 | <input type="text" size="30" name="username" id="username" |
|---|
| 10 | value="[% username %]" /> |
|---|
| 11 | </div> |
|---|
| 12 | </div> |
|---|
| 13 | |
|---|
| 14 | <div class="edit_form_group" id="comment_group"> |
|---|
| 15 | <label for="comment"> |
|---|
| 16 | Comment about your changes: |
|---|
| 17 | </label> |
|---|
| 18 | <div class="edit_box"> |
|---|
| 19 | <input type="text" size="30" name="comment" id="comment" |
|---|
| 20 | value="[% comment %]" /> |
|---|
| 21 | </div> |
|---|
| 22 | </div> |
|---|
| 23 | |
|---|
| 24 | <div class="edit_form_group" id="edit_type_group"> |
|---|
| 25 | <label for="edit_type"> |
|---|
| 26 | Type of edit: |
|---|
| 27 | </label> |
|---|
| 28 | <div class="edit_box"> |
|---|
| 29 | <select name="edit_type" id="edit_type"> |
|---|
| 30 | <option [% IF edit_type == "Normal edit" %] selected="selected" [% END %] value="Normal edit">Normal edit</option> |
|---|
| 31 | <option [% IF edit_type == "Minor tidying" %] selected="selected" [% END %] value="Minor tidying">Minor tidying</option> |
|---|
| 32 | </select> |
|---|
| 33 | </div> |
|---|
| 34 | </div> |
|---|
| 35 | |
|---|
| 36 | </fieldset> |
|---|
| 37 | |
|---|
| 38 | |
|---|