yesod/examples/fact.html
Michael Snoyman 7ab3b406db Added fact example and fixed a few bugs.
Added the Static and StaticFile reps.
Special responses set headers properly (redirect works).
2009-12-21 16:05:48 +02:00

13 lines
298 B
HTML

<!DOCTYPE html>
<html>
<head>
<title>Factorials</title>
</head>
<body>
<form method="get" action="fact/">
<p><label for="num">Number:</label> <input type="text" id="num" name="num"></p>
<p><input type="submit" value="Get the factorial!"></p>
</form>
</body>
</html>