0
Fork 0
mirror of https://projects.blender.org/infrastructure/gitea-custom.git synced 2024-12-22 07:13:09 -05:00

Login: Add notice about disabled login and hide buttons

This commit is contained in:
Pablo Vazquez 2023-02-02 12:34:53 +01:00
parent 28f97a396c
commit 4e8be1543d
2 changed files with 29 additions and 0 deletions

View file

@ -1,3 +1,7 @@
/* */
#navbar .right.stackable.menu {
display: none;
}
/* bthree dark theme */
@font-face {

View file

@ -0,0 +1,25 @@
{{template "base/head" .}}
<!-- Temporary login code. Remove once projects.blender.org is public. -->
<div class="page-content user signin">
<div class="ui middle very relaxed page grid">
<div class="ui container column fluid">
<div class="ui warning message">
<strong>Login is temporarily disabled.</strong>
<br/>It will be enabled again once the migration to projects.blender.org is complete.
<a href="https://devtalk.blender.org/">Read more</a>.
</div>
</div>
</div>
</div>
<!-- End of temp login code. -->
<div style="display: none;" class="page-content user signin{{if .LinkAccountMode}} icon{{end}}">
{{template "user/auth/signin_navbar" .}}
<div class="ui middle very relaxed page grid">
<div class="ui container column fluid">
{{template "user/auth/signin_inner" .}}
</div>
</div>
</div>
{{template "base/footer" .}}