9 lines
260 B
Elixir
9 lines
260 B
Elixir
defmodule MvWeb.JoinConfirmHTML do
|
|
@moduledoc """
|
|
Renders join confirmation result pages (success, expired, invalid) with
|
|
public header and hero layout. Used by JoinConfirmController.
|
|
"""
|
|
use MvWeb, :html
|
|
|
|
embed_templates "join_confirm_html/*"
|
|
end
|