Handle hostnames with upper-case letters
[webmin.git] / smf / smfwizard_template.cgi
1 #!/usr/local/bin/perl
2
3 require './smf-lib.pl';
4 &ReadParse();
5 &ui_print_header(undef, $text{'smfwizard_title'}, "");
6
7 # wizard-specific info here
8 &wizard_header($wizard, "smfwizard_template.cgi",
9         "$text{'smfwizard_template_heading'}",
10         &convert_links_in_text("$text{'smfwizard_template_description'}"),
11         "images/smf.gif");
12
13 &wizard_input("smfwizard_template.cgi",
14         "$text{'smfwizard_template_common_name'}",
15         "template_common_name", 60, ".+",
16         "$text{'smfwizard_common_name_error'}");
17 &wizard_textarea("smfwizard_template.cgi",
18         "$text{'smfwizard_template_svc_description'}", "template_description",
19         10, 30, ".+", "$text{'smfwizard_template_svc_description_error'}");
20
21 &wizard_footer($wizard, "smfwizard_template.cgi");
22 # end wizard-specific info
23
24 &ui_print_footer("index.cgi", $text{'index'});