<h1>Add Artist</h1>
-<form method="post">
+<%if error|matches value=="no-name-given">
+ <p>You have to specify a name.</p>
+<%/if>
- <label>Name: <input type="text" name="name" value=""/></label>
- <button type="submit">Add Artist</button>
-
-</form>
+<%include include/admin.add-artist>
<%include include/footer>
\ No newline at end of file
<%last></ul><%/last>
<%/foreach>
-<a href="admin.add-artist">add new artist</a>
+<h2>Add a New Artist</h2>
+
+<%include include/admin.add-artist>
<%include include/footer>
\ No newline at end of file
--- /dev/null
+<form action="admin.add-artist" method="post" accept-charset="utf-8">
+
+ <div>
+ Name:
+ <input type="text" name="name" value=""/>
+ <button type="submit">Add Artist</button>
+ </div>
+
+</form>