<?php
<html>
<head>
<link rel="stylesheet" type="text/css" href="<{system.htdocs}>styles/<{system.service.config('color')}>/default.css" />
</head>
<body>
<form method="post">
<input type="hidden" name="command" value="admin/categories/create" />
<table border="0" cellspacing="0" cellpadding="0" width="100%" bgcolor="<{system.color('border')}>">
<tr>
<td>
<table border="0" cellspacing="1" cellpadding="0" width="100%">
<tr>
<td>
<table border="0" cellspacing="0" cellpadding="0" width="100%" height="25" bgcolor="<{system.color('link')}>" background="<{system.htdocs}>styles/<{system.color}>/titlebg.gif">
<tr>
<td><font color="#ffffff"><b> Create a Category</b></font></td>
</tr>
</table>
<table border="0" cellspacing="0" cellpadding="10" width="100%" bgcolor="<{system.color('content_bg')}>">
<tr>
<td>
<table border="0" cellspacing="10" cellpadding="0">
<tr>
<td width="100">Name:</td>
<td><input type="text" name="name" size="30" /></td>
</tr>
<%categories_enabled%>
<tr>
<td width="100">Root category:</td>
<td>
<select name="parent">
<option value="0"> - None -</option>
<%categories%>
<option value="<{category.id}>"><{category.path}></option>
<%end%>
</select>
</td>
</tr>
<%end%>
<tr>
<td width="100">Enabled:</td>
<td><input type="checkbox" name="status" value="1" checked="checked" /></td>
</tr>
</table>
</td>
</tr>
</table>
</td>
</tr>
<tr>
<td>
<table border="0" cellspacing="0" cellpadding="3" width="100%" bgcolor="<{system.color('highlight_bg')}>">
<tr>
<td<%if:"{system.env('HTTP_USER_AGENT')} !~ /mozilla/4/i || {system.env('HTTP_USER_AGENT')} =~ /compatible/i"%> class="buttons"<%end%>><input type="submit" value="Finish" /></td>
</tr>
</table>
</td>
</tr>
</table>
</td>
</tr>
</table>
</form>
</body>
</html>
?>