Rename login.erb -> page.erb

This commit is contained in:
Josh Holtrop 2026-03-28 19:50:53 -04:00
parent 011be07e03
commit 8a8d793199
2 changed files with 1 additions and 1 deletions

View File

@ -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)