diff options
author | Norwin <noerw@users.noreply.github.com> | 2020-11-14 02:46:40 +0000 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-11-13 21:46:40 -0500 |
commit | e16b0e5a90076578534fc36886ea8fe16d366df1 (patch) | |
tree | 596662537307c04e5bb81080dd197a136a8544f0 /templates/user/auth/signin.tmpl | |
parent | 5c76c5ce44a41e6cfeb7eff607dcca5713b99935 (diff) | |
download | gitea-e16b0e5a90076578534fc36886ea8fe16d366df1.tar.gz gitea-e16b0e5a90076578534fc36886ea8fe16d366df1.zip |
unify layout between auth pages (#13547)
Co-authored-by: techknowlogick <techknowlogick@gitea.io>
Diffstat (limited to 'templates/user/auth/signin.tmpl')
-rw-r--r-- | templates/user/auth/signin.tmpl | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/templates/user/auth/signin.tmpl b/templates/user/auth/signin.tmpl index bbb471cacb..cee40acfc4 100644 --- a/templates/user/auth/signin.tmpl +++ b/templates/user/auth/signin.tmpl @@ -1,8 +1,10 @@ {{template "base/head" .}} <div class="user signin{{if .LinkAccountMode}} icon{{end}}"> {{template "user/auth/signin_navbar" .}} - <div class="ui container"> - {{template "user/auth/signin_inner" .}} + <div class="ui middle very relaxed page grid"> + <div class="ui container column"> + {{template "user/auth/signin_inner" .}} + </div> </div> </div> {{template "base/footer" .}} |