Compare commits

...

4 Commits

Author SHA1 Message Date
Lauryn Menard
97fc26dd99 create-realm: Remove 'left' and 'center' classes.
The 'left' and 'center' classes have no apparent CSS styles or
frontend code that uses them on the `create_realm.html` template.
2025-10-13 10:08:14 -07:00
Lauryn Menard
69a8ec3ae9 create-realm: Remove margin-top rules for new-organization-button.
The top margin for the submit button on `create_realm.html` is
set by the '#new-realm-creation .register-button' rule in
`portico_signin.css`.

Removes the redundant margin-top rules for new-organization-button
class that are not used.
2025-10-13 10:08:14 -07:00
Lauryn Menard
e98cf5819c create-realm: Remove CSS rule for 'input.new-organization-button'.
In commit 7afbc9d, the button to create a new organization in
`templates/zerver/create_realm.html` was changed from an input
element to a button element.

Removes CSS rule that's been unused since that change.
2025-10-13 10:08:14 -07:00
Lauryn Menard
e4b425c083 docs: Update links for renamed securing-your-zulip-server doc. 2025-10-13 10:06:31 -07:00
8 changed files with 9 additions and 21 deletions

View File

@@ -32,6 +32,6 @@ reason to run older major releases.
See also our documentation on the [Zulip release
lifecycle][release-lifecycle].
[securing-your-zulip-server]: https://zulip.readthedocs.io/en/latest/production/security-model.html
[securing-your-zulip-server]: https://zulip.readthedocs.io/en/latest/production/securing-your-zulip-server.html
[upgrades]: https://zulip.readthedocs.io/en/stable/production/upgrade.html#upgrading-to-a-release
[release-lifecycle]: https://zulip.readthedocs.io/en/latest/overview/release-lifecycle.html

View File

@@ -77,5 +77,5 @@ When the Zulip server has configured multiple rate limits that apply
to a given request, the values returned will be for the strictest
limit.
[rate-limiting-rules]: https://zulip.readthedocs.io/en/latest/production/security-model.html#rate-limiting
[rate-limiting-rules]: https://zulip.readthedocs.io/en/latest/production/securing-your-zulip-server.html#rate-limiting
[integrations-channel]: https://chat.zulip.org/#narrow/channel/127-integrations/

View File

@@ -1164,7 +1164,7 @@
</tr>
<tr>
<td class="comparison-table-feature">
<a href="https://zulip.readthedocs.io/en/latest/production/security-model.html#passwords">
<a href="https://zulip.readthedocs.io/en/latest/production/securing-your-zulip-server.html#passwords">
Custom password strength requirement
</a>
</td>
@@ -1289,7 +1289,7 @@
</tr>
<tr>
<td class="comparison-table-feature">
<a href="https://zulip.readthedocs.io/en/latest/production/security-model.html#rate-limiting">
<a href="https://zulip.readthedocs.io/en/latest/production/securing-your-zulip-server.html#rate-limiting">
API endpoint access rate limits
</a>
</td>

View File

@@ -82,7 +82,7 @@ priority.
- Zulip uses the zxcvbn password strength checker by default, and supports
customizing users password strength requirements. See our documentation
on
[password strength](https://zulip.readthedocs.io/en/latest/production/security-model.html#passwords)
[password strength](https://zulip.readthedocs.io/en/latest/production/securing-your-zulip-server.html#passwords)
for more detail.
- Users can rotate their accounts credentials, blocking further access from
any compromised Zulip credentials. With Zulip on-premise, server
@@ -165,4 +165,4 @@ by security researchers outside the company.
## Further reading
- Detailed
[security model documentation](https://zulip.readthedocs.io/en/latest/production/security-model.html)
[security model documentation](https://zulip.readthedocs.io/en/latest/production/securing-your-zulip-server.html)

View File

@@ -9,9 +9,9 @@
{% block portico_content %}
<div class="app register-page">
<div class="app-main register-page-container new-style flex full-page center">
<div class="app-main register-page-container new-style flex full-page">
<div class="register-form left" id="new-realm-creation">
<div class="register-form" id="new-realm-creation">
<div class="lead">
<h1 class="get-started">{{ _("Create a new Zulip organization") }}</h1>
</div>

View File

@@ -776,16 +776,6 @@ input#terminal:checked ~ #tab-terminal {
margin-left: 10px;
}
.new-organization-button {
margin-top: 10px;
}
input.new-organization-button {
display: block;
margin-left: auto;
margin-right: auto;
}
.login-form {
margin: auto;
/* plus input padding. */

View File

@@ -323,8 +323,6 @@ html {
}
.new-organization-button {
margin-top: 25px;
&[disabled] {
cursor: default;
opacity: 0.6;

View File

@@ -789,7 +789,7 @@ SOCIAL_AUTH_SAML_SUPPORT_CONTACT = {
# SESSION_COOKIE_AGE = 60 * 60 * 24 * 7 * 2 # 2 weeks
## Password strength requirements; learn about configuration at
## https://zulip.readthedocs.io/en/latest/production/security-model.html.
## https://zulip.readthedocs.io/en/latest/production/securing-your-zulip-server.html.
# PASSWORD_MIN_LENGTH = 6
# PASSWORD_MAX_LENGTH = 100
# PASSWORD_MIN_GUESSES = 10000