Merge branch 'master' into feature/3517/ssh_keys

This commit is contained in:
ARvind Tiwari 2017-07-31 18:50:07 +05:30
commit a2f705f012
14 changed files with 170 additions and 109 deletions

View file

@ -714,3 +714,8 @@ a.unlink:hover {
width: 100% !important;
}
}
.footer-light a:hover, .footer-light a:focus, .footer-light a:active {
color: #ddd;
}

View file

@ -119,7 +119,9 @@
</div>
</footer>
{% else %}
{% include "datacenterlight/includes/_footer.html" %}
<div class="footer-light">
{% include "datacenterlight/includes/_footer.html" %}
</div>
{% endif %}
<!-- jQuery -->
<script src="{% static 'hosting/js/jquery.js' %}"></script>

View file

@ -1,4 +1,5 @@
from django.conf.urls import url
from django.contrib.auth import views as auth_views
from .views import DjangoHostingView, RailsHostingView, PaymentVMView,\
NodeJSHostingView, LoginView, SignupView, SignupValidateView, SignupValidatedView, IndexView, \
@ -41,7 +42,7 @@ urlpatterns = [
url(r'reset-password/?$', PasswordResetView.as_view(), name='reset_password'),
url(r'reset-password-confirm/(?P<uidb64>[0-9A-Za-z]+)-(?P<token>.+)/$',
PasswordResetConfirmView.as_view(), name='reset_password_confirm'),
url(r'^logout/?$', 'django.contrib.auth.views.logout',
url(r'^logout/?$', auth_views.logout,
{'next_page': '/hosting/login?logged_out=true'}, name='logout'),
url(r'^validate/(?P<validate_slug>.*)/$', SignupValidatedView.as_view(), name='validate')
]