mirror of
https://github.com/zulip/zulip.git
synced 2025-10-28 18:43:52 +00:00
Fix accounts_home and login to display no-password correctly.
This fixes the /register/ (accounts_home) and /login/ pages to not display the login form if login isn’t allowed at the organization level.
This commit is contained in:
committed by
Tim Abbott
parent
c7f710b8d4
commit
07ecf971c6
@@ -44,49 +44,51 @@ $(function () {
|
||||
configure authentication backends.</p>
|
||||
</div>
|
||||
{% else %}
|
||||
<form class="form-inline" id="send_confirm" name="email_form"
|
||||
action="{{ current_url() }}" method="post">
|
||||
{{ csrf_input }}
|
||||
{% if password_auth_enabled %}
|
||||
<form class="form-inline" id="send_confirm" name="email_form"
|
||||
action="{{ current_url() }}" method="post">
|
||||
{{ csrf_input }}
|
||||
|
||||
<div class="input-box no-validate">
|
||||
<input type="email" id="email" class="email" name="email" value="" required />
|
||||
<label>Email</label>
|
||||
<div class="required"></div>
|
||||
<img class="valid" src="/static/images/checkbox-valid.svg" />
|
||||
<div class="input-box no-validate">
|
||||
<input type="email" id="email" class="email" name="email" value="" required />
|
||||
<label>Email</label>
|
||||
<div class="required"></div>
|
||||
<img class="valid" src="/static/images/checkbox-valid.svg" />
|
||||
</div>
|
||||
|
||||
<button class="full-width" type="submit" name="">{{ _('Sign up') }}</button>
|
||||
</form>
|
||||
|
||||
<div id="errors"></div>
|
||||
{% if form.email.errors %}
|
||||
{% for error in form.email.errors %}
|
||||
<div class="alert alert-error">{{ error }}</div>
|
||||
{% endfor %}
|
||||
{% endif %}
|
||||
|
||||
{% if any_oauth_backend_enabled %}
|
||||
<div class="or">or</div>
|
||||
{% endif %}
|
||||
{% endif %}
|
||||
|
||||
{% if google_auth_enabled %}
|
||||
<div class="register-google">
|
||||
<a href="{{ url('zerver.views.auth.start_google_oauth2') }}">
|
||||
<button class="login-google-button full-width">{{ _('Sign up with Google') }}</button>
|
||||
</a>
|
||||
</div>
|
||||
{% endif %}
|
||||
|
||||
<button class="full-width" type="submit" name="">{{ _('Sign up') }}</button>
|
||||
</form>
|
||||
|
||||
<div id="errors"></div>
|
||||
{% if form.email.errors %}
|
||||
{% for error in form.email.errors %}
|
||||
<div class="alert alert-error">{{ error }}</div>
|
||||
{% endfor %}
|
||||
{% endif %}
|
||||
|
||||
{% if any_oauth_backend_enabled %}
|
||||
<div class="or">or</div>
|
||||
{% endif %}
|
||||
|
||||
{% if google_auth_enabled %}
|
||||
<div class="register-google">
|
||||
<a href="{{ url('zerver.views.auth.start_google_oauth2') }}">
|
||||
<button class="login-google-button full-width">{{ _('Sign up with Google') }}</button>
|
||||
</a>
|
||||
</div>
|
||||
{% endif %}
|
||||
|
||||
{% if github_auth_enabled %}
|
||||
<div class="login-github">
|
||||
<a href="{{ url('signup-social', args=('github',)) }}"
|
||||
class="github-wrapper">
|
||||
<button class="login-github-button github">
|
||||
<span>{{ _('Sign up with GitHub') }}</span>
|
||||
</button>
|
||||
</a>
|
||||
</div>
|
||||
{% endif %}
|
||||
{% if github_auth_enabled %}
|
||||
<div class="login-github">
|
||||
<a href="{{ url('signup-social', args=('github',)) }}"
|
||||
class="github-wrapper">
|
||||
<button class="login-github-button github">
|
||||
<span>{{ _('Sign up with GitHub') }}</span>
|
||||
</button>
|
||||
</a>
|
||||
</div>
|
||||
{% endif %}
|
||||
{% endif %}
|
||||
</div>
|
||||
</div>
|
||||
|
||||
@@ -129,12 +129,13 @@ autofocus('#id_username');
|
||||
|
||||
<button type="submit" name="button" class="full-width">{{ _("Sign in") }}</button>
|
||||
</form>
|
||||
{% endif %}
|
||||
|
||||
{% if any_oauth_backend_enabled %}
|
||||
<div class="or">or</div>
|
||||
{% endif %}
|
||||
|
||||
{% endif %} <!-- if password_auth_enabled -->
|
||||
|
||||
{% if google_auth_enabled %}
|
||||
<div class="login-google">
|
||||
<a href="{{ url('zerver.views.auth.start_google_oauth2') }}">
|
||||
|
||||
Reference in New Issue
Block a user