diff --git a/news/templates/news/base.html b/news/templates/news/base.html
index bc9815a..70c2686 100644
--- a/news/templates/news/base.html
+++ b/news/templates/news/base.html
@@ -35,6 +35,7 @@
diff --git a/news/templates/news/howto.html b/news/templates/news/howto.html
new file mode 100644
index 0000000..44a7105
--- /dev/null
+++ b/news/templates/news/howto.html
@@ -0,0 +1,13 @@
+{% extends 'news/base.html' %}
+{% load static %}
+{% block content %}
+
How to use NewViewsNews
+
In this day and age, close-mindedness and echochambers prevent others from being exposed to people who offer varying perspectives. This has caused a lot of conflict within our society. Our solution: NewViewsNews.
+

+
+
NewViewsNews is a crowdsourcing news site that allows you to view the news and opinions of people who have opposing political views. To get started, you simply make an account and specify your position on the political compass. After that, you can write your own posts and view other posts! Our algorithms will display posts from individuals on the opposite side of the compass on your home page.
+
NewViewsNews is paving the way for an open minded and more understanding community. Join us today!
+
+
+
+{% endblock content %}
diff --git a/news/urls.py b/news/urls.py
index 5a1b7e3..a3be455 100644
--- a/news/urls.py
+++ b/news/urls.py
@@ -13,6 +13,7 @@ urlpatterns = [
path('', views.home, name='home'),
path('about/', views.about, name='about'),
path('policy/', views.policy, name='privacy-policy'),
+ path('howto/', views.howto, name='howto'),
path('user/
', UserArticleListView.as_view(), name='user-articles'),
path('article//', ArticleDetailView.as_view(), name='article-detail'),
diff --git a/news/views.py b/news/views.py
index 07bc38c..a97b94e 100644
--- a/news/views.py
+++ b/news/views.py
@@ -24,6 +24,14 @@ def about (request):
return render (request, 'news/about.html')
+@login_required
+def howto (request):
+ createProfileIfNotExist(request)
+ if checkValues(request) is False:
+ return redirect('values')
+
+ return render (request, 'news/howto.html')
+
def policy (request):
return render (request, 'news/policy.html')