diff options
author | Raphael Kabo <mail@raphaelkabo.com> | 2025-05-28 18:01:08 +0100 |
---|---|---|
committer | Raphael Kabo <mail@raphaelkabo.com> | 2025-05-28 18:01:08 +0100 |
commit | a5e2faf58ddd4793a5f7e3e284b023162d69cbb3 (patch) | |
tree | df8dacfd279760f505d4b0f6dcf195a6a44a6a1b /views/createEventMagicLink.handlebars | |
parent | bc9e983b16d9ac2d27a4458c0a87f9d11aa80c0e (diff) | |
parent | bde9b408342f56833cf0a514488365189083f312 (diff) |
Merge remote-tracking branch 'origin/main' into raphael/add-mailgun
Diffstat (limited to 'views/createEventMagicLink.handlebars')
-rw-r--r-- | views/createEventMagicLink.handlebars | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/views/createEventMagicLink.handlebars b/views/createEventMagicLink.handlebars index d0a0a49..7c01ebc 100644 --- a/views/createEventMagicLink.handlebars +++ b/views/createEventMagicLink.handlebars @@ -1,5 +1,5 @@ <main class="page"> - <h2 class="mb-4">Request a link to create a new event</h2> + <h2 class="mb-4">{{t "views.createeventmagiclink.requestmltitle" }}</h2> <form action="/magic-link/event/create" @@ -8,10 +8,10 @@ hx-target="article" > <p> - The administrator of this instance has limited event creation to a set of specific email addresses. If your email address is allowed to create events, you will be sent a magic link. If not, you won't receive anything. + {{t "views.createeventmagiclink.requestmldesc" }} </p> <p> - If you run into any issues, please contact the instance administrator. + {{t "views.createeventmagiclink.requestmlcontact" }} </p> {{#if message}} <div class="alert alert-{{message.type}}" role="alert"> @@ -19,11 +19,11 @@ </div> {{/if}} <div class="form-group"> - <label for="email">Email address</label> - <input type="email" class="form-control" id="email" placeholder="Email address" required name="email"> + <label for="email">{{t "common.emailaddr" }}</label> + <input type="email" class="form-control" id="email" placeholder="{{t "common.emailaddr" }}" required name="email"> </div> <div class="form-group text-center"> - <button type="submit" class="button button--primary w-50">Request magic link</button> + <button type="submit" class="button button--primary w-50">{{t "routes.magiclink.requestmlbutton" }}</button> </div> </form> </main> |