|
Revision 617, 0.7 kB
(checked in by dom, 4 years ago)
|
|
New css id maincontent, and misc template bugfixes
|
-
Property svn:eol-style set to
native
-
Property svn:keywords set to
Author Date Id Revision
|
| Line | |
|---|
| 1 | [%- USE CGI -%] |
|---|
| 2 | [% INCLUDE header.tt page_title = "Create a new page - $site_name" %] |
|---|
| 3 | [% INCLUDE banner.tt %] |
|---|
| 4 | <div id="content"> |
|---|
| 5 | [% INCLUDE navbar.tt %] |
|---|
| 6 | <div id="maincontent"> |
|---|
| 7 | |
|---|
| 8 | <form action="newpage.cgi" method="POST"> |
|---|
| 9 | <label for="pagename">Enter the name of the page to make:</label><br /> |
|---|
| 10 | <input type="text" size="50" name="pagename" id="pagename" value="New page name" /> |
|---|
| 11 | <input type="submit" value="Go" id="go" class="form_button" /> |
|---|
| 12 | <input type="hidden" name="action" value="makepage" /> |
|---|
| 13 | |
|---|
| 14 | <p>Note: you may not use the following characters in page names:<br /> |
|---|
| 15 | <strong> |
|---|
| 16 | [% FOREACH naughty = disallowed_chars %] |
|---|
| 17 | [% CGI.escapeHTML(naughty) %] |
|---|
| 18 | [% END %] |
|---|
| 19 | </strong> |
|---|
| 20 | </form> |
|---|
| 21 | </div> |
|---|
| 22 | [% INCLUDE footer.tt %] |
|---|