diff options
Diffstat (limited to 'templates/login.html')
-rw-r--r-- | templates/login.html | 20 |
1 files changed, 20 insertions, 0 deletions
diff --git a/templates/login.html b/templates/login.html new file mode 100644 index 0000000..41b6c43 --- /dev/null +++ b/templates/login.html @@ -0,0 +1,20 @@ +<!DOCTYPE html> +<html xmlns="http://www.w3.org/1999/xhtml" + xmlns:py="http://genshi.edgewall.org/" + xmlns:sub="http://local.sublab.org/subdap/xmlns-templates" + xmlns:xi="http://www.w3.org/2001/XInclude"> + <xi:include href="layout.xi"/> + <head> + <title>login</title> + </head> + <sub:bodyform> + <form action='login' method='POST'> + <a href="create" id="create">Konto erstellen</a> + <div>uid: <input type='text' name='username' size="10"/></div> + <b class="error" py:if="'username' in errors">${errors.username}</b> + <div>passwort: <input type='password' name='password' size="10"/></div> + <b class="error" py:if="'password' in errors">${errors.password}</b> + <input type='submit' value='login'/> + </form> + </sub:bodyform> +</html> |