view makeitso/templates/index.html @ 20:6d1c703c5ffc

use tempita instead of genshi since we have it already (and dont need a really complex templating system)
author Jeff Hammel <jhammel@mozilla.com>
date Wed, 17 Nov 2010 10:57:59 -0800
parents c46ec69d6253
children
line wrap: on
line source

<html>
<head>
</head>
<body>

<form method="post">
Type in some text
<textarea name="content" rows="25" cols="80"></textarea>
<input type="submit"/>
</form>

<form method="post" enctype="multipart/form-data">
or upload a file
<input type="file" name="content"/>
<input type="submit"/>
</form>

<form method="post">
or point to a URL
<input type="text" name="content"/>
<input type="submit"/>
</form>
</body>
</html>