1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
|
#!/usr/bin/env perl
use Mojolicious::Lite;
get '/' => 'index';
get '/foo' => sub {
my $c = shift;
my $user = $c->param('user');
$c->render(text => qq{Hello $user!});
};
app->start;
__DATA__
@@ index.html.ep
<!DOCTYPE html>
<html>
<head>
<title>title</title>
</head>
<body>
<form action="/foo">
<input name="user" type="text">
<input type="submit" value="Submit!">
</form>
</body>
</html>
|