Added the Static and StaticFile reps. Special responses set headers properly (redirect works).
13 lines
298 B
HTML
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>
|