diff options
Diffstat (limited to 'templates/registration')
-rw-r--r-- | templates/registration/base_admin.html | 3 | ||||
-rw-r--r-- | templates/registration/base_client.html | 3 | ||||
-rw-r--r-- | templates/registration/base_simple.html | 3 |
3 files changed, 9 insertions, 0 deletions
diff --git a/templates/registration/base_admin.html b/templates/registration/base_admin.html index e7c56df..f150c35 100644 --- a/templates/registration/base_admin.html +++ b/templates/registration/base_admin.html @@ -5,6 +5,9 @@ <!DOCTYPE html> <html> <head> + <script> + document.documentElement.setAttribute("theme", "light"); + </script> {% load static %} <link href="https://fonts.googleapis.com/icon?family=Material+Icons" rel="stylesheet"> <link rel="stylesheet" type="text/css" href="{% static request.session.new_css|materialize_css %}"> diff --git a/templates/registration/base_client.html b/templates/registration/base_client.html index 89a7eca..de54445 100644 --- a/templates/registration/base_client.html +++ b/templates/registration/base_client.html @@ -4,6 +4,9 @@ <!DOCTYPE html> <html> <head> + <script> + document.documentElement.setAttribute("theme", "light"); + </script> {% load static %} {% load app_filter %} <link href="https://fonts.googleapis.com/icon?family=Material+Icons" rel="stylesheet"> diff --git a/templates/registration/base_simple.html b/templates/registration/base_simple.html index 9dc4e35..4aa13e5 100644 --- a/templates/registration/base_simple.html +++ b/templates/registration/base_simple.html @@ -4,6 +4,9 @@ <!DOCTYPE html> <html> <head> + <script> + document.documentElement.setAttribute("theme", "light"); + </script> {% load static %} <link href="https://fonts.googleapis.com/icon?family=Material+Icons" rel="stylesheet"> <link rel="stylesheet" type="text/css" href="{% static 'materialize.min.css' %}"> |