Dear all,

Please find update for gitea-1.7.0 attached, OK to commit?
Changelog: https://github.com/go-gitea/gitea/blob/master/CHANGELOG.md

-- 
With best regards,
Pavel Korovin
Index: Makefile
===================================================================
RCS file: /cvs/ports/www/gitea/Makefile,v
retrieving revision 1.14
diff -u -p -r1.14 Makefile
--- Makefile    5 Nov 2018 19:10:15 -0000       1.14
+++ Makefile    25 Jan 2019 12:46:28 -0000
@@ -2,7 +2,7 @@
 
 COMMENT =              compact self-hosted Git service
 
-VERSION =              1.5.3
+VERSION =              1.7.0
 GH_ACCOUNT =           go-gitea
 GH_PROJECT =           gitea
 GH_TAGNAME =           v${VERSION}
Index: distinfo
===================================================================
RCS file: /cvs/ports/www/gitea/distinfo,v
retrieving revision 1.7
diff -u -p -r1.7 distinfo
--- distinfo    5 Nov 2018 19:10:15 -0000       1.7
+++ distinfo    25 Jan 2019 12:46:28 -0000
@@ -1,2 +1,2 @@
-SHA256 (gitea-1.5.3.tar.gz) = OpSYLR+gVJ4m4shvhZvAndpICpimsHzlaCJX88594Yg=
-SIZE (gitea-1.5.3.tar.gz) = 18866434
+SHA256 (gitea-1.7.0.tar.gz) = L91NUbIvQMA+alXAZdr7z60WyhSt9PCTzu2J5ZSA9nk=
+SIZE (gitea-1.7.0.tar.gz) = 20829587
Index: patches/patch-custom_conf_app_ini_sample
===================================================================
RCS file: /cvs/ports/www/gitea/patches/patch-custom_conf_app_ini_sample,v
retrieving revision 1.2
diff -u -p -r1.2 patch-custom_conf_app_ini_sample
--- patches/patch-custom_conf_app_ini_sample    20 Aug 2018 07:52:01 -0000      
1.2
+++ patches/patch-custom_conf_app_ini_sample    25 Jan 2019 12:46:28 -0000
@@ -28,8 +28,8 @@ Index: custom/conf/app.ini.sample
  ; One or more allowed types, e.g. image/jpeg|image/png. Nothing means any 
file type
  ALLOWED_TYPES =
  ; Max size of each file in megabytes. Defaults to 3MB
-@@ -137,7 +137,7 @@ SSH_DOMAIN = %(DOMAIN)s
- ; THe network interface the builtin SSH server should listen on
+@@ -147,7 +147,7 @@ SSH_DOMAIN = %(DOMAIN)s
+ ; The network interface the builtin SSH server should listen on
  SSH_LISTEN_HOST =
  ; Port number to be exposed in clone URL
 -SSH_PORT = 22
@@ -37,7 +37,7 @@ Index: custom/conf/app.ini.sample
  ; The port number the builtin SSH server should listen on
  SSH_LISTEN_PORT = %(SSH_PORT)s
  ; Root path of SSH directory, default is '~/.ssh', but you have to use 
'/home/git/.ssh'.
-@@ -172,13 +172,13 @@ DISABLE_ROUTER_LOG = false
+@@ -185,13 +185,13 @@ DISABLE_ROUTER_LOG = false
  ; not forget to export the private key):
  ; $ openssl pkcs12 -in cert.pfx -out cert.pem -nokeys
  ; $ openssl pkcs12 -in cert.pfx -out key.pem -nocerts -nodes
@@ -53,8 +53,8 @@ Index: custom/conf/app.ini.sample
 +APP_DATA_PATH = ${LOCALSTATEDIR}/gitea/data
  ; Application level GZIP support
  ENABLE_GZIP = false
- ; Landing page, can be "home", "explore", or "organizations"
-@@ -186,7 +186,7 @@ LANDING_PAGE = home
+ ; Application profiling (memory and cpu)
+@@ -205,7 +205,7 @@ LANDING_PAGE = home
  ; Enables git-lfs support. true or false, default is false.
  LFS_START_SERVER = false
  ; Where your lfs files reside, default is data/lfs.
@@ -63,7 +63,7 @@ Index: custom/conf/app.ini.sample
  ; LFS authentication secret, change this yourself
  LFS_JWT_SECRET =
  ; LFS authentication validity period (in time.Duration), pushes taking longer 
than this may fail.
-@@ -201,7 +201,7 @@ DSA = 1024
+@@ -220,7 +220,7 @@ DSA = 1024
  
  [database]
  ; Either "mysql", "postgres", "mssql" or "sqlite3", it's your choice
@@ -72,16 +72,16 @@ Index: custom/conf/app.ini.sample
  HOST = 127.0.0.1:3306
  NAME = gitea
  USER = root
-@@ -210,7 +210,7 @@ PASSWD =
- ; For "postgres" only, either "disable", "require" or "verify-full"
+@@ -230,7 +230,7 @@ PASSWD =
+ ; For MySQL, either "false" (default), "true", or "skip-verify"
  SSL_MODE = disable
- ; For "sqlite3" and "tidb", use absolute path when you start gitea as service
+ ; For "sqlite3" and "tidb", use an absolute path when you start gitea as 
service
 -PATH = data/gitea.db
 +PATH = ${LOCALSTATEDIR}/gitea/data/gitea.db
  ; For "sqlite3" only. Query timeout
  SQLITE_TIMEOUT = 500
  ; For iterate buffer, default is 50
-@@ -219,7 +219,7 @@ ITERATE_BUFFER_SIZE = 50
+@@ -239,7 +239,7 @@ ITERATE_BUFFER_SIZE = 50
  LOG_SQL = true
  
  [indexer]
@@ -90,18 +90,18 @@ Index: custom/conf/app.ini.sample
  ; repo indexer by default disabled, since it uses a lot of disk space
  REPO_INDEXER_ENABLED = false
  REPO_INDEXER_PATH = indexers/repos.bleve
-@@ -350,8 +350,8 @@ HELO_HOSTNAME =
+@@ -386,8 +386,8 @@ HELO_HOSTNAME =
  SKIP_VERIFY =
  ; Use client certificate
  USE_CERTIFICATE = false
 -CERT_FILE = custom/mailer/cert.pem
 -KEY_FILE = custom/mailer/key.pem
-+CERT_FILE = ${LOCALSTATEDIR}/gitea/custom/mailer/cert.pem
-+KEY_FILE = ${LOCALSTATEDIR}/gitea/custom/mailer/key.pem
++CERT_FILE = ${LOCALSTATEDIR}/gitea/custom/https/cert.pem
++KEY_FILE = ${LOCALSTATEDIR}/gitea/custom/https/key.pem
+ ; Should SMTP connection use TLS
+ IS_TLS_ENABLED = false
  ; Mail from address, RFC 5322. This can be just an email address, or the 
`"Name" <[email protected]>` format
- FROM =
- ; Mailer user name and password
-@@ -382,13 +382,13 @@ ITEM_TTL = 16h
+@@ -420,13 +420,13 @@ ITEM_TTL = 16h
  
  [session]
  ; Either "memory", "file", or "redis", default is "memory"
@@ -117,7 +117,7 @@ Index: custom/conf/app.ini.sample
  ; Session cookie name
  COOKIE_NAME = i_like_gitea
  ; If you use session in https only, default is false
-@@ -401,7 +401,7 @@ GC_INTERVAL_TIME = 86400
+@@ -439,7 +439,7 @@ GC_INTERVAL_TIME = 86400
  SESSION_LIFE_TIME = 86400
  
  [picture]
@@ -126,7 +126,7 @@ Index: custom/conf/app.ini.sample
  ; Max Width and Height of uploaded avatars. This is to limit the amount of RAM
  ; used when resizing the image.
  AVATAR_MAX_WIDTH = 4096
-@@ -420,7 +420,7 @@ ENABLE_FEDERATED_AVATAR = false
+@@ -458,7 +458,7 @@ ENABLE_FEDERATED_AVATAR = false
  ; Whether attachments are enabled. Defaults to `true`
  ENABLED = true
  ; Path for attachments. Defaults to `data/attachments`
@@ -135,7 +135,7 @@ Index: custom/conf/app.ini.sample
  ; One or more allowed types, e.g. image/jpeg|image/png
  ALLOWED_TYPES = image/jpeg|image/png|application/zip|application/gzip
  ; Max size of each file. Defaults to 4MB
-@@ -435,14 +435,14 @@ MAX_FILES = 5
+@@ -473,14 +473,14 @@ MAX_FILES = 5
  FORMAT =
  
  [log]
Index: patches/patch-main_go
===================================================================
RCS file: /cvs/ports/www/gitea/patches/patch-main_go,v
retrieving revision 1.3
diff -u -p -r1.3 patch-main_go
--- patches/patch-main_go       20 Aug 2018 07:52:01 -0000      1.3
+++ patches/patch-main_go       25 Jan 2019 12:46:28 -0000
@@ -5,7 +5,7 @@ Gets shown in the footer.
 Index: main.go
 --- main.go.orig
 +++ main.go
-@@ -21,7 +21,7 @@ import (
+@@ -22,7 +22,7 @@ import (
  )
  
  // Version holds the current Gitea version
Index: pkg/PLIST
===================================================================
RCS file: /cvs/ports/www/gitea/pkg/PLIST,v
retrieving revision 1.8
diff -u -p -r1.8 PLIST
--- pkg/PLIST   4 Sep 2018 12:46:24 -0000       1.8
+++ pkg/PLIST   25 Jan 2019 12:46:29 -0000
@@ -30,6 +30,7 @@ share/gitea/options/gitignore/Appcelerat
 share/gitea/options/gitignore/ArchLinuxPackages
 share/gitea/options/gitignore/Archives
 share/gitea/options/gitignore/Autotools
+share/gitea/options/gitignore/Backup
 share/gitea/options/gitignore/Bazaar
 share/gitea/options/gitignore/BricxCC
 share/gitea/options/gitignore/C
@@ -55,6 +56,7 @@ share/gitea/options/gitignore/DM
 share/gitea/options/gitignore/Dart
 share/gitea/options/gitignore/DartEditor
 share/gitea/options/gitignore/Delphi
+share/gitea/options/gitignore/Diff
 share/gitea/options/gitignore/Dreamweaver
 share/gitea/options/gitignore/Dropbox
 share/gitea/options/gitignore/Drupal
@@ -82,12 +84,15 @@ share/gitea/options/gitignore/GWT
 share/gitea/options/gitignore/Gcov
 share/gitea/options/gitignore/GitBook
 share/gitea/options/gitignore/Go
+share/gitea/options/gitignore/Godot
 share/gitea/options/gitignore/Gradle
 share/gitea/options/gitignore/Grails
 share/gitea/options/gitignore/Haskell
 share/gitea/options/gitignore/IGORPro
 share/gitea/options/gitignore/Idris
+share/gitea/options/gitignore/Images
 share/gitea/options/gitignore/JDeveloper
+share/gitea/options/gitignore/JEnv
 share/gitea/options/gitignore/Java
 share/gitea/options/gitignore/Jboss
 share/gitea/options/gitignore/Jekyll
@@ -96,8 +101,9 @@ share/gitea/options/gitignore/Joomla
 share/gitea/options/gitignore/Julia
 share/gitea/options/gitignore/KDevelop4
 share/gitea/options/gitignore/Kate
-share/gitea/options/gitignore/KiCAD
+share/gitea/options/gitignore/KiCad
 share/gitea/options/gitignore/Kohana
+share/gitea/options/gitignore/Kotlin
 share/gitea/options/gitignore/LabVIEW
 share/gitea/options/gitignore/Laravel
 share/gitea/options/gitignore/Lazarus
@@ -131,8 +137,11 @@ share/gitea/options/gitignore/Opa
 share/gitea/options/gitignore/OpenCart
 share/gitea/options/gitignore/OracleForms
 share/gitea/options/gitignore/Otto
+share/gitea/options/gitignore/PSoCCreator
 share/gitea/options/gitignore/Packer
+share/gitea/options/gitignore/Patch
 share/gitea/options/gitignore/Perl
+share/gitea/options/gitignore/Perl6
 share/gitea/options/gitignore/Phalcon
 share/gitea/options/gitignore/PlayFramework
 share/gitea/options/gitignore/Plone
@@ -566,6 +575,7 @@ share/gitea/options/locale/locale_cs-CZ.
 share/gitea/options/locale/locale_de-DE.ini
 share/gitea/options/locale/locale_en-US.ini
 share/gitea/options/locale/locale_es-ES.ini
+share/gitea/options/locale/locale_fa-IR.ini
 share/gitea/options/locale/locale_fi-FI.ini
 share/gitea/options/locale/locale_fr-FR.ini
 share/gitea/options/locale/locale_hu-HU.ini
@@ -595,6 +605,7 @@ share/gitea/options/readme/Default
 share/gitea/public/
 share/gitea/public/css/
 share/gitea/public/css/index.css
+share/gitea/public/css/theme-arc-green.css
 share/gitea/public/img/
 share/gitea/public/img/404.png
 share/gitea/public/img/500.png
@@ -613,6 +624,8 @@ share/gitea/public/img/dingtalk.ico
 share/gitea/public/img/discord.png
 share/gitea/public/img/favicon.ico
 share/gitea/public/img/favicon.png
+share/gitea/public/img/gitea-192.png
+share/gitea/public/img/gitea-512.png
 share/gitea/public/img/gitea-lg.png
 share/gitea/public/img/gitea-safari.svg
 share/gitea/public/img/gitea-sm.png
@@ -635,10 +648,13 @@ share/gitea/public/less/_install.less
 share/gitea/public/less/_markdown.less
 share/gitea/public/less/_organization.less
 share/gitea/public/less/_repository.less
+share/gitea/public/less/_review.less
 share/gitea/public/less/_tribute.less
 share/gitea/public/less/_user.less
 share/gitea/public/less/index.less
-share/gitea/public/swagger.v1.json
+share/gitea/public/less/themes/
+share/gitea/public/less/themes/_base.less
+share/gitea/public/less/themes/arc-green.less
 share/gitea/public/vendor/
 share/gitea/public/vendor/VERSIONS
 share/gitea/public/vendor/assets/
@@ -655,6 +671,27 @@ share/gitea/public/vendor/assets/font-aw
 share/gitea/public/vendor/assets/font-awesome/fonts/fontawesome-webfont.ttf
 share/gitea/public/vendor/assets/font-awesome/fonts/fontawesome-webfont.woff
 share/gitea/public/vendor/assets/font-awesome/fonts/fontawesome-webfont.woff2
+share/gitea/public/vendor/assets/lato-fonts/
+share/gitea/public/vendor/assets/lato-fonts/lato-v14-latin-700.eot
+share/gitea/public/vendor/assets/lato-fonts/lato-v14-latin-700.svg
+share/gitea/public/vendor/assets/lato-fonts/lato-v14-latin-700.ttf
+share/gitea/public/vendor/assets/lato-fonts/lato-v14-latin-700.woff
+share/gitea/public/vendor/assets/lato-fonts/lato-v14-latin-700.woff2
+share/gitea/public/vendor/assets/lato-fonts/lato-v14-latin-700italic.eot
+share/gitea/public/vendor/assets/lato-fonts/lato-v14-latin-700italic.svg
+share/gitea/public/vendor/assets/lato-fonts/lato-v14-latin-700italic.ttf
+share/gitea/public/vendor/assets/lato-fonts/lato-v14-latin-700italic.woff
+share/gitea/public/vendor/assets/lato-fonts/lato-v14-latin-700italic.woff2
+share/gitea/public/vendor/assets/lato-fonts/lato-v14-latin-italic.eot
+share/gitea/public/vendor/assets/lato-fonts/lato-v14-latin-italic.svg
+share/gitea/public/vendor/assets/lato-fonts/lato-v14-latin-italic.ttf
+share/gitea/public/vendor/assets/lato-fonts/lato-v14-latin-italic.woff
+share/gitea/public/vendor/assets/lato-fonts/lato-v14-latin-italic.woff2
+share/gitea/public/vendor/assets/lato-fonts/lato-v14-latin-regular.eot
+share/gitea/public/vendor/assets/lato-fonts/lato-v14-latin-regular.svg
+share/gitea/public/vendor/assets/lato-fonts/lato-v14-latin-regular.ttf
+share/gitea/public/vendor/assets/lato-fonts/lato-v14-latin-regular.woff
+share/gitea/public/vendor/assets/lato-fonts/lato-v14-latin-regular.woff2
 share/gitea/public/vendor/assets/octicons/
 share/gitea/public/vendor/assets/octicons/LICENSE
 share/gitea/public/vendor/assets/octicons/octicons.eot
@@ -2010,6 +2047,8 @@ share/gitea/public/vendor/plugins/jquery
 share/gitea/public/vendor/plugins/jquery.minicolors/jquery.minicolors.png
 share/gitea/public/vendor/plugins/jquery/LICENSE
 share/gitea/public/vendor/plugins/jquery/jquery.min.js
+share/gitea/public/vendor/plugins/moment/
+share/gitea/public/vendor/plugins/moment/moment.min.js
 share/gitea/public/vendor/plugins/pdfjs/
 share/gitea/public/vendor/plugins/pdfjs/LICENSE
 share/gitea/public/vendor/plugins/pdfjs/build/
@@ -2121,12 +2160,22 @@ share/gitea/public/vendor/plugins/semant
 share/gitea/public/vendor/plugins/semantic/themes/default/
 share/gitea/public/vendor/plugins/semantic/themes/default/assets/
 share/gitea/public/vendor/plugins/semantic/themes/default/assets/fonts/
+share/gitea/public/vendor/plugins/semantic/themes/default/assets/fonts/brand-icons.eot
+share/gitea/public/vendor/plugins/semantic/themes/default/assets/fonts/brand-icons.svg
+share/gitea/public/vendor/plugins/semantic/themes/default/assets/fonts/brand-icons.ttf
+share/gitea/public/vendor/plugins/semantic/themes/default/assets/fonts/brand-icons.woff
+share/gitea/public/vendor/plugins/semantic/themes/default/assets/fonts/brand-icons.woff2
 
share/gitea/public/vendor/plugins/semantic/themes/default/assets/fonts/icons.eot
 
share/gitea/public/vendor/plugins/semantic/themes/default/assets/fonts/icons.otf
 
share/gitea/public/vendor/plugins/semantic/themes/default/assets/fonts/icons.svg
 
share/gitea/public/vendor/plugins/semantic/themes/default/assets/fonts/icons.ttf
 
share/gitea/public/vendor/plugins/semantic/themes/default/assets/fonts/icons.woff
 
share/gitea/public/vendor/plugins/semantic/themes/default/assets/fonts/icons.woff2
+share/gitea/public/vendor/plugins/semantic/themes/default/assets/fonts/outline-icons.eot
+share/gitea/public/vendor/plugins/semantic/themes/default/assets/fonts/outline-icons.svg
+share/gitea/public/vendor/plugins/semantic/themes/default/assets/fonts/outline-icons.ttf
+share/gitea/public/vendor/plugins/semantic/themes/default/assets/fonts/outline-icons.woff
+share/gitea/public/vendor/plugins/semantic/themes/default/assets/fonts/outline-icons.woff2
 share/gitea/public/vendor/plugins/semantic/themes/default/assets/images/
 
share/gitea/public/vendor/plugins/semantic/themes/default/assets/images/flags.png
 share/gitea/public/vendor/plugins/semantic/themes/github/
@@ -2136,6 +2185,14 @@ share/gitea/public/vendor/plugins/semant
 
share/gitea/public/vendor/plugins/semantic/themes/github/assets/fonts/octicons.svg
 
share/gitea/public/vendor/plugins/semantic/themes/github/assets/fonts/octicons.ttf
 
share/gitea/public/vendor/plugins/semantic/themes/github/assets/fonts/octicons.woff
+share/gitea/public/vendor/plugins/semantic/themes/material/
+share/gitea/public/vendor/plugins/semantic/themes/material/assets/
+share/gitea/public/vendor/plugins/semantic/themes/material/assets/fonts/
+share/gitea/public/vendor/plugins/semantic/themes/material/assets/fonts/icons.eot
+share/gitea/public/vendor/plugins/semantic/themes/material/assets/fonts/icons.svg
+share/gitea/public/vendor/plugins/semantic/themes/material/assets/fonts/icons.ttf
+share/gitea/public/vendor/plugins/semantic/themes/material/assets/fonts/icons.woff
+share/gitea/public/vendor/plugins/semantic/themes/material/assets/fonts/icons.woff2
 share/gitea/public/vendor/plugins/simplemde/
 share/gitea/public/vendor/plugins/simplemde/LICENSE
 share/gitea/public/vendor/plugins/simplemde/simplemde.min.css
@@ -2146,6 +2203,9 @@ share/gitea/public/vendor/plugins/tribut
 share/gitea/public/vendor/plugins/u2f/
 share/gitea/public/vendor/plugins/u2f/index.js
 share/gitea/public/vendor/plugins/vue/
+share/gitea/public/vendor/plugins/vue-calendar-heatmap/
+share/gitea/public/vendor/plugins/vue-calendar-heatmap/vue-calendar-heatmap.browser.js
+share/gitea/public/vendor/plugins/vue-calendar-heatmap/vue-calendar-heatmap.css
 share/gitea/public/vendor/plugins/vue/LICENSE
 share/gitea/public/vendor/plugins/vue/vue.min.js
 share/gitea/templates/
@@ -2179,7 +2239,9 @@ share/gitea/templates/base/
 share/gitea/templates/base/alert.tmpl
 share/gitea/templates/base/delete_modal_actions.tmpl
 share/gitea/templates/base/footer.tmpl
+share/gitea/templates/base/footer_content.tmpl
 share/gitea/templates/base/head.tmpl
+share/gitea/templates/base/head_navbar.tmpl
 share/gitea/templates/base/paginate.tmpl
 share/gitea/templates/custom/
 share/gitea/templates/custom/body_inner_post.tmpl
@@ -2226,10 +2288,14 @@ share/gitea/templates/org/settings/navba
 share/gitea/templates/org/settings/options.tmpl
 share/gitea/templates/org/team/
 share/gitea/templates/org/team/members.tmpl
+share/gitea/templates/org/team/navbar.tmpl
 share/gitea/templates/org/team/new.tmpl
 share/gitea/templates/org/team/repositories.tmpl
 share/gitea/templates/org/team/sidebar.tmpl
 share/gitea/templates/org/team/teams.tmpl
+share/gitea/templates/pwa/
+share/gitea/templates/pwa/manifest_json.tmpl
+share/gitea/templates/pwa/serviceworker_js.tmpl
 share/gitea/templates/repo/
 share/gitea/templates/repo/activity.tmpl
 share/gitea/templates/repo/bare.tmpl
@@ -2242,8 +2308,14 @@ share/gitea/templates/repo/commits_table
 share/gitea/templates/repo/create.tmpl
 share/gitea/templates/repo/diff/
 share/gitea/templates/repo/diff/box.tmpl
+share/gitea/templates/repo/diff/comment_form.tmpl
+share/gitea/templates/repo/diff/comment_form_datahandler.tmpl
+share/gitea/templates/repo/diff/comments.tmpl
+share/gitea/templates/repo/diff/new_comment.tmpl
+share/gitea/templates/repo/diff/new_review.tmpl
 share/gitea/templates/repo/diff/page.tmpl
 share/gitea/templates/repo/diff/section_unified.tmpl
+share/gitea/templates/repo/diff/whitespace_dropdown.tmpl
 share/gitea/templates/repo/editor/
 share/gitea/templates/repo/editor/commit_form.tmpl
 share/gitea/templates/repo/editor/delete.tmpl
@@ -2260,6 +2332,7 @@ share/gitea/templates/repo/issue/comment
 share/gitea/templates/repo/issue/label_precolors.tmpl
 share/gitea/templates/repo/issue/labels.tmpl
 share/gitea/templates/repo/issue/list.tmpl
+share/gitea/templates/repo/issue/milestone_issues.tmpl
 share/gitea/templates/repo/issue/milestone_new.tmpl
 share/gitea/templates/repo/issue/milestones.tmpl
 share/gitea/templates/repo/issue/navbar.tmpl
@@ -2321,10 +2394,14 @@ share/gitea/templates/repo/wiki/view.tmp
 share/gitea/templates/status/
 share/gitea/templates/status/404.tmpl
 share/gitea/templates/status/500.tmpl
-share/gitea/templates/swagger.tmpl
+share/gitea/templates/swagger/
+share/gitea/templates/swagger/ui.tmpl
+share/gitea/templates/swagger/v1_json.tmpl
 share/gitea/templates/user/
 share/gitea/templates/user/auth/
 share/gitea/templates/user/auth/activate.tmpl
+share/gitea/templates/user/auth/change_passwd.tmpl
+share/gitea/templates/user/auth/change_passwd_inner.tmpl
 share/gitea/templates/user/auth/finalize_openid.tmpl
 share/gitea/templates/user/auth/forgot_passwd.tmpl
 share/gitea/templates/user/auth/link_account.tmpl

Reply via email to