summaryrefslogtreecommitdiffstats
path: root/templates/webhook/new/discord.tmpl
diff options
context:
space:
mode:
Diffstat (limited to 'templates/webhook/new/discord.tmpl')
-rw-r--r--templates/webhook/new/discord.tmpl17
1 files changed, 17 insertions, 0 deletions
diff --git a/templates/webhook/new/discord.tmpl b/templates/webhook/new/discord.tmpl
new file mode 100644
index 0000000..455a96c
--- /dev/null
+++ b/templates/webhook/new/discord.tmpl
@@ -0,0 +1,17 @@
+<p>{{ctx.Locale.Tr "repo.settings.add_web_hook_desc" "https://discord.com" (ctx.Locale.Tr "repo.settings.web_hook_name_discord")}}</p>
+<form class="ui form" action="{{.BaseLink}}/{{or .Webhook.ID "discord/new"}}" method="post">
+ {{.CsrfTokenHtml}}
+ <div class="required field {{if .Err_PayloadURL}}error{{end}}">
+ <label for="payload_url">{{ctx.Locale.Tr "repo.settings.payload_url"}}</label>
+ <input id="payload_url" name="payload_url" type="url" value="{{.Webhook.URL}}" autofocus required>
+ </div>
+ <div class="required field {{if .Err_PayloadURL}}error{{end}}">
+ <label for="username">{{ctx.Locale.Tr "repo.settings.discord_username"}}</label>
+ <input id="username" name="username" value="{{.HookMetadata.Username}}" autofocus required placeholder="Forgejo">
+ </div>
+ <div class="field">
+ <label for="icon_url">{{ctx.Locale.Tr "repo.settings.discord_icon_url"}}</label>
+ <input id="icon_url" name="icon_url" value="{{.HookMetadata.IconURL}}" placeholder="https://example.com/assets/img/logo.svg">
+ </div>
+ {{template "webhook/shared-settings" .}}
+</form>