diff --git a/labellabor/urls.py b/labellabor/urls.py
index 28c4dca..011ae4c 100644
--- a/labellabor/urls.py
+++ b/labellabor/urls.py
@@ -35,6 +35,7 @@ urlpatterns = [
path('account/register/', RegistrationView.as_view(), name='registration'),
path('account/register/done/', RegistrationCompleteView.as_view(), name='registration_complete'),
path('privacy-policy', PrivacyView.as_view(), name='privacy_policy'),
+ path('terms', PrivacyView.as_view(), name='terms'),
path('', HomeView.as_view(), name='home'),
path('', include(tf_urls)),
path('', include('user_sessions.urls', 'user_sessions')),
diff --git a/labellabor/views.py b/labellabor/views.py
index b06a718..8df24a6 100644
--- a/labellabor/views.py
+++ b/labellabor/views.py
@@ -22,6 +22,9 @@ class HomeView(TemplateView):
class PrivacyView(TemplateView):
template_name = 'privacy.html'
+class TermsView(TemplateView):
+ template_name = 'terms.html'
+
diff --git a/templates/_base.html b/templates/_base.html
index 3d3d0c6..b5caeda 100644
--- a/templates/_base.html
+++ b/templates/_base.html
@@ -261,10 +261,16 @@ body {
{% endif %}
-
- Privacy Policy
-
+
+
+ Privacy Policy
+
+
+ Terms
+
diff --git a/templates/terms.html b/templates/terms.html
new file mode 100644
index 0000000..785d38f
--- /dev/null
+++ b/templates/terms.html
@@ -0,0 +1,274 @@
+{% extends "_base.html" %}
+{% load i18n %}
+
+{% block title %}Terms of Service{% endblock %}
+{% block nav_home %}active{% endblock %}
+
+{% block content %}
+
+
+
Lbelbase
+ All your labels in one place.
+
+
+
+
+
+
+
+
+
+ {% comment %}
+
+
+
+ {% endcomment %}
+ {#% include "footer.html" %#}
+ {% comment %}
+
+ {% url 'registration' as reg_url %}
+ {% url 'two_factor:login' as login_url %}
+ {% url 'two_factor:setup' as setup_url %}
+ {% url 'logout' as logout_url %}
+ {% url 'secret' as secret_url %}
+
+ {% trans "Next steps:" %}
+
+ - {% blocktrans trimmed %}Start by registering an
+ account.{% endblocktrans %}
+ - {% blocktrans trimmed %}Login to your account.
+ {% endblocktrans %}
+ - {% blocktrans trimmed %}Enable two-factor
+ authentication.{% endblocktrans %}
+ - {% blocktrans trimmed %}Then, logout and
+ login once more to your account to see
+ two-factor authentication at work.{% endblocktrans %}
+ - {% blocktrans trimmed %}At last, you've gained access to the
+ secret page! :-){% endblocktrans %}
+
+
+
+ {% endcomment %}
+{% endblock %}