diff options
author | Matthias Andreas Benkard <code@mail.matthias.benkard.de> | 2009-02-23 17:46:58 +0100 |
---|---|---|
committer | Matthias Andreas Benkard <code@mail.matthias.benkard.de> | 2009-02-23 17:46:58 +0100 |
commit | 0208289a5535bd838bbcc55750f3436a66ce2027 (patch) | |
tree | e4795797fb230ca72c21d0e9e35b06abdd106911 | |
parent | 5f115b1abd8228b349f94a6268d1bad68c0330bf (diff) |
login.st: Simplify.
-rw-r--r-- | login.st | 32 |
1 files changed, 16 insertions, 16 deletions
@@ -1,18 +1,18 @@ -<?xml version="1.0" ?> -<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" - "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd"> +$header(title=logintext)$ -<html xmlns="http://www.w3.org/1999/xhtml"> - <head> - <title>$logintext$ — Gödel-Gentzen Clojure Syndication Services Super System</title> - </head> +<p>$logintext$</p> - <body> - $logintext$ - <form action="login" method="POST"> - Username: <input name="name" type="text" /> <br /> - Password: <input name="password" type="password" /> <br /> - <input type="submit" value="Log In" /> - </form> - </body> -</html> +<form action="login" method="POST"> + Username: <input name="name" type="text" /> <br /> + Password: <input name="password" type="password" /> <br /> + <input type="submit" value="Log In" /> +</form> + +$footer()$ + +<!-- +Local Variables: + mode: html + coding: utf-8 +End: +--> |