We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
The title_instance_variable configuration method can be set to access the built-in page titles from your views:
title_instance_variable
# app/misc/rodauth_main.rb class RodauthMain < Rodauth::Rails::Auth configure do title_instance_variable :@page_title end end
<!-- app/views/layouts/application.html.erb --> <!DOCTYPE html> <html> <head> <title><%= @page_title || "Default title" %></title> <!-- ... --> </head> <!-- ... --> </html>