view wordstream/templates/post.html @ 7:c576f5877459

* fix resolution for bad urls; * change URL post to get
author Jeff Hammel <jhammel@mozilla.com>
date Sat, 19 Nov 2011 18:19:13 -0800
parents e21f53582267
children
line wrap: on
line source

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

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

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

<form method="get">
or point to a URL
<input type="text" name="url"/>
<input type="submit" value="Dissociate"/>
</form>
</body>
</html>