mirror of https://github.com/zulip/zulip.git
Don't include signup.js in login.html
(imported from commit fe36afb1703e706012f1c690d15481a0da204eb3)
This commit is contained in:
parent
1769b4c21b
commit
7d44e1c56f
|
@ -1,4 +1,4 @@
|
|||
{% extends "zephyr/portico.html" %}
|
||||
{% extends "zephyr/portico_signup.html" %}
|
||||
|
||||
{# Home page for not logged-in users. #}
|
||||
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
{% extends "zephyr/portico.html" %}
|
||||
{% extends "zephyr/portico_signup.html" %}
|
||||
|
||||
{# Displayed after a user attempts to sign up. #}
|
||||
|
||||
|
|
|
@ -8,8 +8,6 @@ hence the name.
|
|||
{% endcomment %}
|
||||
|
||||
{% block customhead %}
|
||||
<script src="https://ajax.aspnetcdn.com/ajax/jquery.validate/1.9/jquery.validate.min.js"></script>
|
||||
<script src="/static/js/signup.js"></script>
|
||||
<link href="/static/styles/portico.css?dummy_time={% now "U" %}" rel="stylesheet">
|
||||
{% endblock %}
|
||||
|
||||
|
|
|
@ -0,0 +1,9 @@
|
|||
{% extends "zephyr/portico.html" %}
|
||||
|
||||
{# Portico page with signup code #}
|
||||
|
||||
{% block customhead %}
|
||||
{{ block.super }}
|
||||
<script src="https://ajax.aspnetcdn.com/ajax/jquery.validate/1.9/jquery.validate.min.js"></script>
|
||||
<script src="/static/js/signup.js"></script>
|
||||
{% endblock %}
|
|
@ -1,4 +1,4 @@
|
|||
{% extends "zephyr/portico.html" %}
|
||||
{% extends "zephyr/portico_signup.html" %}
|
||||
|
||||
{% comment %}
|
||||
Gather other user information, after having confirmed
|
||||
|
|
Loading…
Reference in New Issue