diff --git a/templates/zerver/new-user.html b/templates/zerver/new-user.html deleted file mode 100644 index a0985f9b71..0000000000 --- a/templates/zerver/new-user.html +++ /dev/null @@ -1,54 +0,0 @@ -{% extends "zerver/portico.html" %} - -{# New user tutorial standin. #} - -{% block portico_content %} -
-
-

Hello, and welcome!

- - -

Zulip is a little different than some chat systems you may have already - used.
- Here's what you need to know:

- - - -

This means we can have a conversation about git, jQuery, - fundraising, where to go to lunch, and a message from your commit bot - all simultaneously--without it getting unmanageable.

- -

Let's take a look

-

- -

- -

Here, we have three conversations occurring simultaneously:

- - -

Some things to know

- - -

You're ready to go!

-

If you have any feedback, please, send it our way!

-
-
-{% endblock %} diff --git a/zproject/urls.py b/zproject/urls.py index 5d9c2cd109..f57d5a5ab7 100644 --- a/zproject/urls.py +++ b/zproject/urls.py @@ -58,7 +58,7 @@ urlpatterns = patterns('', # "About Zulip" information url(r'^what-is-humbug/$', TemplateView.as_view(template_name='zerver/what-is-humbug.html')), - url(r'^new-user/$', TemplateView.as_view(template_name='zerver/new-user.html')), + url(r'^new-user/$', RedirectView.as_view(url='/hello')), url(r'^features/$', TemplateView.as_view(template_name='zerver/features.html')), # Landing page, signup form, and nice register URL