diff options
author | zeripath <art27@cantab.net> | 2020-10-19 22:03:08 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-10-19 17:03:08 -0400 |
commit | 2f1353a2f33762e10a304cbebf3a6a8d0381d316 (patch) | |
tree | b345bf060a107341c64447f7132d9e2b8d37a7b3 /templates/install.tmpl | |
parent | 3ddf3f93d6346ac9440a7a571faea4b5c1c329be (diff) | |
download | gitea-2f1353a2f33762e10a304cbebf3a6a8d0381d316.tar.gz gitea-2f1353a2f33762e10a304cbebf3a6a8d0381d316.zip |
Move install pages out of main macaron routes (#13195)
* Move install pages out of main macaron loop
Signed-off-by: Andrew Thornton <art27@cantab.net>
* Update templates/post-install.tmpl
Co-authored-by: Lauris BH <lauris@nix.lv>
* remove prefetch
Signed-off-by: Andrew Thornton <art27@cantab.net>
Diffstat (limited to 'templates/install.tmpl')
-rw-r--r-- | templates/install.tmpl | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/templates/install.tmpl b/templates/install.tmpl index 27cf1034c5..f0e4680c32 100644 --- a/templates/install.tmpl +++ b/templates/install.tmpl @@ -10,7 +10,7 @@ <p>{{.i18n.Tr "install.docker_helper" "https://docs.gitea.io/en-us/install-with-docker/" | Safe}}</p> - <form class="ui form" action="{{AppSubUrl}}/install" method="post"> + <form class="ui form" action="{{AppSubUrl}}/" method="post"> <!-- Database Settings --> <h4 class="ui dividing header">{{.i18n.Tr "install.db_title"}}</h4> <p>{{.i18n.Tr "install.requite_db_desc"}}</p> @@ -307,4 +307,5 @@ </div> </div> </div> +<img style="display: none" src="{{StaticUrlPrefix}}/img/loading.png"/> {{template "base/footer" .}} |