Jan Dittberner
7ec9e393e0
This commit adds a separate protected resource page to demonstrate how to selectively require logins. Add code to improve client performance by providing modification timestamps and Cache-Control headers for embedded static files.
23 lines
789 B
TOML
23 lines
789 B
TOML
AuthenticatedAs = "The identity provider authenticated your identity as {{ .Name }} with the email address {{ .Email }}."
|
|
ErrorTitle = "An error has occurred"
|
|
GreetingAnonymous = "Hello"
|
|
GreetingAuthenticated = "Hello {{ .Name }}"
|
|
IndexIntroductionText = "This is a public resource."
|
|
IndexTitle = "Welcome to the Demo application"
|
|
ProtectedIntroductionText = "This is an authorization protected resource."
|
|
|
|
[IndexNavLabel]
|
|
description = "Label for the index page in the top navigation"
|
|
other = "Welcome"
|
|
|
|
[LoginLabel]
|
|
description = "A label on a login button or link"
|
|
other = "Login"
|
|
|
|
[LogoutLabel]
|
|
description = "A label on a logout button or link"
|
|
other = "Logout"
|
|
|
|
[ProtectedNavLabel]
|
|
description = "Label for the protected resource page in the top navigation"
|
|
other = "Protected area"
|