accounts/go: Change class of bottom text to be consistent.

I changed the class of the two bottom texts to use the same styling as
(`/new` and `/complete/github`)
This commit is contained in:
Alexandra Ciobica 2019-08-03 16:34:51 +02:00 committed by Tim Abbott
parent 196185db03
commit 4c08a840d0
2 changed files with 4 additions and 12 deletions

View File

@ -1076,14 +1076,6 @@ button.login-social-button:active {
font-size: 0.9em;
}
#create-organization-section {
text-align: center;
margin-top: 20px;
font-weight: 500;
margin-left: -28px;
font-size: 0.9em;
}
.find-account-link {
color: hsl(165, 100.0%, 14.7%);
}

View File

@ -30,17 +30,17 @@
{% endif %}
</div>
<button id="enter-realm-button" type="submit">{{ _('Next') }}</button>
<p id="find-account-section">
<p class="bottom-text">
{{ _("Don't know your organization URL?") }}
<a target="_blank" class="find-account-link" href="/accounts/find/">{{ _("Find your organization.") }}</a>
<a target="_blank" href="/accounts/find/">{{ _("Find your organization.") }}</a>
</p>
</div>
</form>
</div>
</div>
<div id="create-organization-section">
{{ _("Need to get your group started on Zulip?") }} <a target="_blank" class="find-account-link" href="/new/">{{ _("Create a new organization.") }}</a>
<div class="bottom-text">
{{ _("Need to get your group started on Zulip?") }} <a target="_blank" href="/new/">{{ _("Create a new organization.") }}</a>
</div>
</div>