{% import "net/http" %} {% import "github.com/bouncepaw/mycorrhiza/cfg" %} {% import "github.com/bouncepaw/mycorrhiza/l18n" %} {% func RegisterHTML(rq *http.Request) %} {% code lc := l18n.FromRequest(rq) %}
{% if cfg.AllowRegistration %} {%= telegramWidgetHTML(lc) %} {% elseif cfg.UseAuth %}

{%s lc.Get("auth.noregister") %}

← {%s lc.Get("auth.go_back") %}

{% else %}

{%s lc.Get("auth.noauth") %}

← {%s lc.Get("auth.go_back") %}

{% endif %}
{% endfunc %} {% func LoginHTML(lc *l18n.Localizer) %}
{% if cfg.UseAuth %} {%= telegramWidgetHTML(lc) %} {% else %}

{%s lc.Get("auth.noauth") %}

← {%s lc.Get("auth.go_home") %}

{% endif %}
{% endfunc %} Telegram auth widget was requested by Yogurt. As you can see, we don't offer user administrators control over it. Of course we don't. {% func telegramWidgetHTML(lc *l18n.Localizer) %} {% if cfg.TelegramEnabled %}

{%s lc.Get("auth.telegram_tip") %}

{% endif %} {% endfunc %} {% func LoginErrorHTML(err string, lc *l18n.Localizer) %}
{% switch err %} {% case "unknown username" %}

{%s lc.Get("auth.error_username") %}

{% case "wrong password" %}

{%s lc.Get("auth.error_password") %}

{% default %}

{%s err %}

{% endswitch %}

← {%s lc.Get("auth.try_again") %}

{% endfunc %} {% func LogoutHTML(can bool, lc *l18n.Localizer) %}
{% if can %}

{%s lc.Get("auth.logout_header") %}

{%s lc.Get("auth.logout_button") %}

{%s lc.Get("ui.cancel") %}

{% else %}

{%s lc.Get("auth.logout_anon") %}

{%s lc.Get("auth.login_title") %}

← {%s lc.Get("auth.go_home") %}

{% endif %}
{% endfunc %} {% func LockHTML(lc *l18n.Localizer) %} 🔒 {%s lc.Get("auth.lock_title") %}

🔒

{%s lc.Get("auth.lock_title") %}

{%= telegramWidgetHTML(lc) %}
{% endfunc %}