remove diff output
[MojoFacets.git] / templates / config / index.html.ep
1 % layout 'default';
2
3 <h1>Configuration</h1>
4
5 <form method=post>
6
7 <ul>
8
9 % foreach my $name ( @$config ) {
10
11 <li>
12 <label>
13 <%= $name %>
14 <input type=text name=<%= $name %> value="<%= $ENV{$name} %>">
15 </label>
16 </li>
17
18 % }
19
20 </ul>
21
22 <input type=submit value="Change">
23 </form>