diff --git a/assets/login.erb b/assets/page.erb similarity index 100% rename from assets/login.erb rename to assets/page.erb diff --git a/cgi-bin/malp.rb b/cgi-bin/malp.rb index fc42a5b..1f6183c 100755 --- a/cgi-bin/malp.rb +++ b/cgi-bin/malp.rb @@ -9,7 +9,7 @@ cgi = CGI.new hostname = File.read("/etc/hostname").strip rescue "localhost" -template = ERB.new(File.read(File.join(ASSETS_DIR, "login.erb"))) +template = ERB.new(File.read(File.join(ASSETS_DIR, "page.erb"))) cgi.out("type" => "text/html", "charset" => "UTF-8") do template.result(binding)