WebFoolKit 0.1.1

CGI and Cookies in Rust
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
<!html>
<head>
<title>Rust Programming</title>
</head>
<body>
<h1>Enter data</h1>
<form name="form1" method="get" action="/docgi.cgi">
<p>Your name: <input type="text" name="name"></p>
<p>Cookie value: <input type="text" name="value"></p>
<input type="submit" value="Rust it!">
</form>

</body>
</html>