Sourcecode in Root/new.skin:
1: To create a new site you need to fill out the form below. The <em>title</em> will appear in the header of every page (you can change it anytime you want) while the <em>alias</em> will be part of the URL to your site (i.e. if you enter "vac" as the alias, your site will be reachable by appending "/vac" to the URL of your Antville server).
2:
3: <p>
4: <form method="post" action="<% response.action %>">
5: <table border="0" cellspacing="0" cellpadding="3">
6: <tr>
7: <td nowrap="nowrap">Title:</td>
8: <td nowrap="nowrap"><% input name="title" %></td>
9: </tr>
10: <tr>
11: <td nowrap="nowrap">Alias:</td>
12: <td nowrap="nowrap"><% input name="alias" %></td>
13: </tr>
14: <tr>
15: <td nowrap="nowrap"> </td>
16: <td nowrap="nowrap"><br /><% input type="submit" name="create" value="Create" %> <% input type="submit" name="cancel" value="Cancel" %></td>
17: </tr>
18: </table>
19: </form>
20: </p>
21:
|