diff --git a/comments/models.py b/comments/models.py
index cf5c7f31194b87dcb2b2c47c08a1c394d58ca698..ad731df90b310af62e98c6ffff7a317df2e1af71 100644
--- a/comments/models.py
+++ b/comments/models.py
@@ -102,6 +102,14 @@ class Comment(models.Model):
         output += '</ul>'
         return output
 
+    def opinions_as_ul_tiny(self):
+        output = '<ul class="opinionsDisplay">'
+        output += '<li style="background-color: #000099; font-size: 8px; padding: 2px;">' + str(self.nr_A) + '</li>'
+        output += '<li style="background-color: #555555; font-size: 8px; padding: 2px;">' + str(self.nr_N) + '</li>'
+        output += '<li style="background-color: #990000; font-size: 8px; padding: 2px;">' + str(self.nr_D) + '</li>'
+        output += '</ul>'
+        return output
+
 
     def print_identifier (self):
         # for display 
@@ -112,7 +120,7 @@ class Comment(models.Model):
                        self.author.user.first_name + ' ' + self.author.user.last_name + '</a> on ')
         output += self.date_submitted.strftime("%Y-%m-%d")
         if self.in_reply_to:
-            output += (' (in reply to <a href="#comment_id' + str(self.in_reply_to_id) + '" style="font-size: 80%">' + 
+            output += (', in reply to <a href="#comment_id' + str(self.in_reply_to_id) + '" style="font-size: 80%">' + 
                        str(self.in_reply_to.author.user.first_name) + ' ' + 
                        str(self.in_reply_to.author.user.last_name) + ' on ' + 
                        self.in_reply_to.date_submitted.strftime("%Y-%m-%d") + '</a>')
@@ -120,7 +128,7 @@ class Comment(models.Model):
         return output
 
     def print_identifier_for_vetting (self):
-        # for display, same as print_identifier but named, not linked 
+        # for display, same as print_identifier but named even if anonymous, not linked 
         output = '<div class="commentid">\n'
         output += '<h3>'
         output += (' <a href="/contributor/' + str(self.author.id) + '">' +
@@ -141,6 +149,7 @@ class Comment(models.Model):
         header = '<li><div class="flex-container">'
         header += '<div class="flex-whitebox0">'
         header += 'Nr ' + str(self.id)
+        header += ', <div class="opinionsDisplay">' + self.opinions_as_ul_tiny() + '</div>'
         if self.status <= 0:
             header += ', status: <span style="color:red">' + comment_status_dict[self.status] + '</span>'
         text_cut = self.comment_text[:50]
@@ -149,26 +158,26 @@ class Comment(models.Model):
         header += ': '
         if self.submission is not None:
             header += ('<a href="/submission/' + str(self.submission.id) + 
-                       '#comment_id' + str(self.id) + '"> \"' + text_cut + 
-                       '\"</a><p>submitted on ' + self.date_submitted.strftime("%Y-%m-%d"))
+                       '#comment_id' + str(self.id) + '"> \"' + text_cut + '\"</a>' + 
+                       '<p>submitted on ' + self.date_submitted.strftime("%Y-%m-%d"))
             header += (' in submission on <a href="/submission/' + str(self.submission.id) + 
                        '" class="pubtitleli">' + self.submission.title + '</a> by ' + 
-                       self.submission.author_list + '</p></div>')
+                       self.submission.author_list + '</p>')
         if self.commentary is not None:
             header += ('<a href="/commentary/' + str(self.commentary.id) + 
                        '#comment_id' + str(self.id) + '"> \"' + text_cut + 
                        '\"</a><p>submitted on ' + self.date_submitted.strftime("%Y-%m-%d"))
             header += (' in commentary on <a href="/commentary/' + str(self.commentary.id) + 
                        '" class="pubtitleli">' + self.commentary.pub_title + 
-                       '</a> by ' + self.commentary.author_list + '</p></div>')
+                       '</a> by ' + self.commentary.author_list + '</p>')
         if self.thesislink is not None:
             header += ('<a href="/thesis/' + str(self.thesislink.id) + 
                        '#comment_id' + str(self.id) + '"> \"' + text_cut + 
                        '\"</a><p>submitted on ' + self.date_submitted.strftime("%Y-%m-%d"))
             header += (' in thesislink on <a href="/thesis/' + str(self.thesislink.id) + 
                        '" class="pubtitleli">' + self.thesislink.title + 
-                       '</a> by ' + self.thesislink.author + '</p></div>')
-        header += '</div></li>'
+                       '</a> by ' + self.thesislink.author + '</p>')
+        header += '</div></div></li>'
         return header
 
     def categories_as_ul(self):
diff --git a/comments/templates/comments/reply_to_comment.html b/comments/templates/comments/reply_to_comment.html
index 5bc25cddab19911e9f31c245b05edcee5b2cd432..654c79a65f19a890a52e4a88bce832b70c8df544 100644
--- a/comments/templates/comments/reply_to_comment.html
+++ b/comments/templates/comments/reply_to_comment.html
@@ -63,7 +63,7 @@
   {% if is_author %}
   <h3>(you are identified as an author, your reply will appear as an author reply)</h3>
   {% else %}
-  <h3>(you are not identified as an author of this publication; you can claim authorship on your Personal Page)</h3>
+  <h3>(you are not identified as an author of this publication; if you are, you can claim authorship on your Personal Page)</h3>
   {% endif %}
   <form action="{% url 'comments:reply_to_comment' comment.id %}" method="post">
     {% csrf_token %}
diff --git a/scipost/static/scipost/SciPost.css b/scipost/static/scipost/SciPost.css
index 624e23a2e9e00f2363dfe453f0f75f3138024914..bdaf85ce60286bf8216d3158cb5ef7eb9bd4e3ea 100644
--- a/scipost/static/scipost/SciPost.css
+++ b/scipost/static/scipost/SciPost.css
@@ -74,8 +74,8 @@ hr.hr12 {
 
 .commentid {
   display: inline-block;
-  box-shadow: 1px 1px 3px #888888;
-  background: linear-gradient(to right,#f8f8f8, #e0e0e0);
+/*  box-shadow: 1px 1px 3px #888888;*/
+/*  background: linear-gradient(to right,#f8f8f8, #e0e0e0);*/
 }
 
 .ratings {
@@ -207,6 +207,8 @@ hr.hr12 {
 /*  background-color: #f4f4f4; */
   margin: 0px;
   padding: 0px;
+  box-shadow: 1px 1px 3px #888888;
+  background: linear-gradient(to right,#f8f8f8, #e0e0e0);
 }
 .flex-greybox {
   background-color: #f4f4f4; 
diff --git a/scipost/templates/scipost/FAQ.html b/scipost/templates/scipost/FAQ.html
index 90c0d3ce391b30f7922f5d5d47c782e9348be25f..fa6dbfe9d5facd2a4fc5e8056ba8c888a9cb312c 100644
--- a/scipost/templates/scipost/FAQ.html
+++ b/scipost/templates/scipost/FAQ.html
@@ -90,6 +90,18 @@
 	<li>you are willing to make your contributions as author and (anonymously) as reviewer and commenter openly accessible</li>
       </ul>
       <br/>
+      <div class="flex-greybox">
+	<h2>SciPost Comments</h2>
+      </div>
+      <h3>What can be commented on?</h3>
+      <p>All categories of contents can be commented on: Publications, Submissions, Commentaries and Thesis Links. In addition, Comments themselves can be replied to.</p>
+      <h3>Who can submit Comments?</h3>
+      <p>Only registered Contributors can submit Comments.</p>
+      <h3>What about privacy?</h3>
+      <p>Comments posted on SciPost carry an identifier including the Contributor's full name.</p>
+      <p>Reports on Submissions are anonymous by default. If the Contributor providing the Report wishes it, anonymity can be waived.</p>
+      <p>More details can be found in our <a href="{% url 'scipost:privacy_policy' %}">Privacy Policy</a>.</p>
+      <br/>
       <div class="flex-greybox">
 	<h2>Over SciPost</h2>
       </div>
diff --git a/scipost/templates/scipost/footer.html b/scipost/templates/scipost/footer.html
index b73188d20ba56565b5d3e790d49ffc002fc505ba..7d804f4c1aecd6362403232de77fbd3be10f6f87 100644
--- a/scipost/templates/scipost/footer.html
+++ b/scipost/templates/scipost/footer.html
@@ -7,7 +7,8 @@
       <a href="mailto:admin@scipost.org">Contact the administrators.</a>  
     </div>
     <div class="col-6">
-      All SciPost content is licensed under the <a href="http://creativecommons.org/licenses/by/4.0/">Creative Commons Attribution 4.0 International (CC BY 4.0) License</a>.
+<!--      All SciPost content is licensed under the <a href="http://creativecommons.org/licenses/by/4.0/">Creative Commons Attribution 4.0 International (CC BY 4.0) License</a>. -->
+      <a href="{% url 'scipost:terms_and_conditions' %}">Terms and conditions.</a>
     </div>
     {% endif %}
   </div>
diff --git a/scipost/templates/scipost/privacy_policy.html b/scipost/templates/scipost/privacy_policy.html
new file mode 100644
index 0000000000000000000000000000000000000000..17f51ee4868048dfd9e930ba5a3fde1cc32f8b65
--- /dev/null
+++ b/scipost/templates/scipost/privacy_policy.html
@@ -0,0 +1,65 @@
+{% extends 'scipost/base.html' %}
+
+{% block pagetitle %}: privacy policy{% endblock pagetitle %}
+
+{% load staticfiles %}
+
+{% block bodysup %}
+
+<!-- Temporary strip for online version -->
+{% if user.is_authenticated %}
+
+
+<section>
+  <div class="flex-container">
+    <div class="flex-greybox">
+      <h1>SciPost Privacy Policy</h1>
+    </div>
+  </div>
+
+  <div class="row">
+    <div class="col-1"></div>
+    <div class="col-10">
+
+      <p>If you have questions about deleting or correcting your personal data please contact us. Stichting SciPost, Ltd. (“SciPost”) operates a Website at scipost.org. It is SciPost’s policy to respect your privacy regarding any information we may collect while operating our Web sites.</p>
+
+      <h2>Website visitors</h2>
+      <p>Like most Website operators, SciPost collects non-personally identifying information of the sort that Web browsers and servers typically make available, such as the browser type, language preference, referring site, and the date and time of each visitor request. SciPost’s purpose in collecting non-personally identifying information is to better understand how SciPost’s visitors use its Website. From time to time, SciPost may release non-personally identifying information in the aggregate, e.g., by publishing a report on trends in the usage of its Website. SciPost also collects potentially personally identifying information like Internet Protocol (IP) addresses for logged in users and for users leaving comments on our site. SciPost only discloses logged in user and commenter IP addresses under the same circumstances that it uses and discloses personally identifying information as described below, except that commenter IP addresses are visible and disclosed to the administrator.</p>
+
+      <h2>Gathering of personally identifying information</h2>
+      <p>Certain visitors to SciPost’s Websites choose to interact with SciPost in ways that require SciPost to gather personally identifying information. The amount and type of information that SciPost gathers depends on the nature of the interaction. For example, SciPost operates a permission-based email communication system, which allows us to collect personal information and send emails to people who want to receive them. In each case, SciPost collects such information only insofar as is necessary or appropriate to fulfil the purpose of the visitor’s interaction with SciPost. SciPost does not disclose personally identifying information other than as described below. And visitors can always refuse to supply personally identifying information, with the caveat that it may prevent them from engaging in certain Website-related activities.</p>
+
+      <h2>Aggregated statistics</h2>
+      <p>SciPost may collect statistics about the behavior of visitors to its Websites. SciPost may display this information publicly or provide it to others. However, SciPost does not disclose personally identifying information other than as described below.</p>
+
+<!--
+      <h2>Protection of certain personally identifying information</h2>
+      <p>SciPost discloses potentially personally identifying and personally identifying information only to those of its employees, contractors and affiliated organizations that (i) need to know that information in order to process it on SciPost’s behalf or to provide services available at SciPost’s Websites, and (ii) that have agreed not to disclose it to others. Some of those employees, contractors and affiliated organizations may be located outside of your home country; by using SciPost’s Websites, you consent to the transfer of such information to them. SciPost will not rent or sell potentially personally identifying and personally identifying information to anyone. Other than to its employees, contractors and affiliated organizations, as described above, SciPost discloses potentially personally identifying and personally identifying information only in response to a subpoena, court order or other governmental request, or when SciPost believes in good faith that disclosure is reasonably necessary to protect the property or rights of SciPost, third parties or the public at large. If you are a registered user of SciPost and have supplied your email address, SciPost may occasionally send you an email to tell you about new features, solicit your feedback, or just keep you up to date with what’s going on with SciPost and our activities – based on the preferences expressed at email sign-up. SciPost takes all measures reasonably necessary to protect against the unauthorized access, use, alteration or destruction of potentially personally identifying and personally identifying information.</p>
+-->
+      <h2>Registered Contributors</h2>
+      <p>Registered Contributors to SciPost agree that the Comments they submit for posting may appear online carrying an identifier including their full names. Additionally, Reports which are provided by Contributors who optionally elect to forego anonymity at the moment of the Report submission, will carry such an identifier if they are posted online. SciPost hosts an information page for each registered Contributor, including name, ORCID identifier, affiliation and link to personal web page, together with a list of Articles, Submissions, Commentaries and Comments associated to this Contributor. </p>
+
+
+      <h2>Cookies</h2>
+      <p>A cookie is a string of information that a Website stores on a visitor’s computer, and that the visitor’s browser provides to the Website each time the visitor returns. SciPost uses cookies to help SciPost identify and track visitors, their usage of the Website, and their Website access preferences. SciPost visitors who do not wish to have cookies placed on their computers should set their browsers to refuse cookies before using SciPost’s Websites, with the drawback that certain features of SciPost’s Websites may not function properly without the aid of cookies. You can modify your browser settings to notify you each time a cookie is sent to it and you can decide whether or not to accept. Alternatively, you can set your browser to refuse all cookies. Cookies that have already been set can be deleted at any time using your browser settings. The independent website at www.aboutcookies.org contains comprehensive information on how to modify your browser settings.</p>
+
+<!--
+      <h2>Business transfers</h2>
+      <p>If SciPost, or substantially all of its assets, were acquired, or in the unlikely event that SciPost goes out of business or enters bankruptcy, user information will be one of the assets that is likely to be transferred to, or acquired by, a third party. You acknowledge that such transfers may occur, and you consent to SciPost's transferring your user information to any acquirer of SciPost and their continuing to use your personal information as set forth in this policy.</p>
+-->
+
+      <h2>Privacy policy changes</h2>
+      <p>Although most changes are likely to be minor, SciPost may change its Privacy Policy from time to time, and at SciPost’s sole discretion. SciPost encourages visitors to frequently check this page for any changes to its Privacy Policy. Your continued use of this site after any change in this Privacy Policy will constitute your acceptance of such change.</p>
+
+      <p> First published March 30, 2016.</p>
+      <p>Change log:</p>
+
+      <p>This policy is based on the one developed by Automattic.com and made available under a CC-SA license.</p>
+
+    </div>
+</section>
+
+
+{% endif %} <!-- temporary strip -->
+
+{% endblock bodysup %}
diff --git a/scipost/templates/scipost/terms_and_conditions.html b/scipost/templates/scipost/terms_and_conditions.html
new file mode 100644
index 0000000000000000000000000000000000000000..474739ddf2be0321dd0c5e204a8baebfc91bcc1f
--- /dev/null
+++ b/scipost/templates/scipost/terms_and_conditions.html
@@ -0,0 +1,90 @@
+{% extends 'scipost/base.html' %}
+
+{% block pagetitle %}: terms and conditions{% endblock pagetitle %}
+
+{% load staticfiles %}
+
+{% block bodysup %}
+
+<!-- Temporary strip for online version -->
+{% if user.is_authenticated %}
+
+
+<section>
+  <div class="flex-container">
+    <div class="flex-greybox">
+      <h1>SciPost Terms and Conditions</h1>
+    </div>
+  </div>
+
+  <div class="row">
+    <div class="col-1"></div>
+    <div class="col-10">
+
+      <h2>General</h2>
+      <p>The SciPost Foundation, Inc. (Stichting SciPost, hereafter "SciPost") is a nonprofit charitable organization dedicated to developing, implementing and maintaining innovative forms of electronic scientific communication and publishing. The SciPost Foundation operates the SciPost.org interactive online portal for the benefit of the international scientific community and further interested parties. SciPost offers the use of the scipost.org portal free of charge to the general public. Access to and use of the sites is provided by SciPost subject to the following Terms and Conditions, which are a contract between SciPost and you. Use of the scipost.org portal constitutes your acceptance of these Terms and Conditions. If you do not accept these Terms and Conditions in full, you do not have permission to access and use the scipost.org sites and should cease doing so immediately.</p>
+      
+      <h2>Ownership</h2>
+      <p>The scipost.org portal, the underlying software, content and trademarks used on or in connection with the scipost.org portal are owned by Stichting SciPost or its licensors, and are subject to international intellectual property rights and laws. Nothing contained herein shall be construed as conferring by implication, or otherwise any license or right under any trademark, copyright or patent of SciPost or any other third party and all rights are reserved, except as explicitly stated in these Terms and Conditions.</p>
+      
+      <h2>License to use Journal Articles, Submissions, Commentaries, Thesis Links and Related Content</h2>
+      <p>Unless otherwise indicated, the journal articles and all other online content published by SciPost on the scipost.org portal are licensed under the <a href="http://creativecommons.org/licenses/by/4.0/">Creative Commons Attribution 4.0 International (CC BY 4.0) License</a>. This means that you are free to use, reproduce and distribute the articles and related content (unless otherwise noted), for commercial and noncommercial purposes, subject to the citation of the original source in accordance with the CC-BY license.</p>
+      
+      <h2>Impermissible Uses</h2>
+      <p>You agree to use the scipost.org portal only for lawful purposes, and in a manner that does not infringe the rights of, or restrict or inhibit the use of the scipost.org portal by any third party. Such restriction or inhibition includes, without limitation, conduct which is unlawful, or which may harass or cause distress or inconvenience to any person and the transmission of obscene or offensive content or disruption of normal flow of dialogue within the portal. As a condition to your use of the scipost.org portal, you agree not to:</p>
+      <ul>
+	<li>upload, post, email, transmit or otherwise make available any information, materials, or other content that is illegal, harmful, threatening, abusive, harassing, defamatory, obscene, pornographic, or offensive; or that infringes another's rights, including any intellectual property rights;</li>
+	<li>impersonate any person or entity or falsely state or otherwise misrepresent your affiliation with a person or entity; or obtain, collect, store, or modify personal information about other users;</li>
+	<li>upload, post, email, transmit, or otherwise make available to any user on the scipost.org portal any unsolicited or unauthorized advertising, promotional materials, 'junk mail', 'spam', 'chain letters', 'pyramid schemes', or any other form of solicitation;</li>
+	<li>modify, adapt, or hack the scipost.org portal or falsely imply that some other site is associated with SciPost; or</li>
+	<li>use the scipost.org portal for any illegal or unauthorized purpose. You must not, in the use of the scipost.org portal, violate any Dutch laws or laws in your jurisdicition (including but not limited to copyright laws).</li>
+      </ul>
+      
+      <h2>Suspension of Use/Violation of these Terms and Conditions</h2>
+      <p>SciPost reserves the right to limit, suspend, or terminate your access and use of the scipost.org portal at any time without notice. SciPost reserves the right to investigate and prosecute violations of any of these Terms and Conditions to the fullest extend of the law. SciPost may involve and cooperate with law enforcement authorities in prosecuting users who violate these Terms and Conditions. You acknowledge that SciPost has no obligation to pre-screen or monitor your access to or use of the scipost.org portal, but has a right to do so. You hereby agree that SciPost may, in the exercise of SciPost's sole discretion, remove or delete any entries, information, materials or other content that violates these Terms and Conditions or that is otherwise objectionable.</p>
+      
+      <h2>Disclaimer of Warranty</h2>
+      <p>The scipost.org portal, including, without limitation, the SciPost software, the SciPost APIs and the content on the scipost.org portal (e.g. the articles, submissions, commentaries, comments, information, data, names, images, pictures, logos and icons), whether belonging to SciPost or a third party, are provided 'AS IS' and on an 'AS AVAILABLE' basis without any representation or endorsement made and without warranty of any kind whether express or implied, including but not limited to ANY implied warranties of satisfactory quality, merchantability, fitness for a particular purpose, non-infringement, compatibility, security, completeness and accuracy. SciPost, its directors, officers, employees, agents and funders (collectively the 'SciPost Parties'), its software vendors, developers or other consultants working on the scipost.org portal do not warrant that the scipost.org portal will be uninterrupted or error free, that defects will be corrected, or that the scipost.org portal or the server that makes it available are free of viruses or bugs or represents the full functionality, accuracy and reliability of the materials.</p>
+      
+      <h2>Limitation of Liability</h2>
+      <p>To the fullest extent permitted by law, in no event will the SciPost Parties, the software vendors, developers or other consultants working on the scipost.org portal be liable for any losses, damages, liabilities, costs or claims including, without limitation, direct, indirect, punative or consequential damages, and loss of use, data or profits, arising out of or in connection with the use of the scipost.org portal, the underlying software, or any content on the scipost.org portal or linked sources, whether in action of contract, negligence or otherwise. </p>
+
+	<h2>Indemnity</h2>
+	<p>You are solely responsible for your actions in connection with the scipost.org portal and any internet costs incurred in accessing the sites. You agree to indemnify and hold harmless, and at SciPost's option defend, the SciPost Parties, the software vendors, developers, consultants or other persons working on the scipost.org portal from and against any liability, damage, loss, cost or expenses (including reasonable attorney's fees) in connection with your use of the scipost.org portal, including, without limitation, the underlying software and content on the scipost.org portal, and the results of any action you may take based on the material contained herein, and from any consequences of the following:</p>
+	<ul>
+	  <li>your failure to comply with any of these Terms and Conditions;</li>
+	  <li>unlawful disclosure of alteration of or interference of whatsoever nature by any person with the content of any transmission by you or on your behalf by means of a public telecommunication system or of information concerning such transmission or the use made of such system by any person; and</li>
+	  <li>any act or omission by you constituting breach of copyright, infringement of trademark rights, or breach of any other intellectual property rights of whatsoever nature, or rights similar thereto anywhere in the world, belonging to any other person, or any allegation of any of the foregoing.</li>
+	</ul>
+	
+	<h2>Privacy Policy</h2>
+      <p>SciPost respects the privacy of its users and is committed to the protection of personal information as described in our Privacy Policy. You confirm that you have read and accept our <a href="{% url 'scipost:privacy_policy' %}">Privacy Policy</a>.</p>
+
+      <h2>Interactive Features</h2>
+      <p>In the course of using the scipost.org portal, you may provide us with feedback, including but not limited to suggestions, observations, errors, problems, and defects regarding the scipost.org portal (collectively 'Feedback') as well as comments on site contents ('Comments'). You hereby grand SciPost a worldwide, irrevocable, perpetual, royalty-free, transferable, and sub-licensable, non-exclusive right to use, copy, modify, distribute, display, perform, create derivative works from and otherwise exploit all such Feedback and Comments. All such Feedback and Comments shall comply with these Terms and Conditions generally and in particular the restrictions in Impermissible Uses above. In addition, content provided by authors for submission shall be subject to the Author Guide and Policies.</p>
+
+      <h2>Infringement</h2>
+      <p>If you believe that your work has been copied in a way that constitutes copyright infringement or your intellectual property rights have otherwise been violated, please notify <a href="mailto:admin@scipost.org">admin@scipost.org.</a></p>
+
+      <h2>Links to Other Websites and Resources</h2>
+      <p>The scipost.org portal provides links to other websites and resources. Because SciPost has no control over such sites and resources, you acknowledge and agree that SciPost is not responsible for the availability of such external sites or resources, and does not endorse and is not responsible or liable for any materials on or available from such sites or resources. Your business dealings with any such external sites or resources including payment and delivery of related goods or services, and any warranties, conditions or other terms associated with such dealings, are solely between you and such third party. You further acknowledge and agree that the SciPost Parties shall not be responsible or liable, directly or indirectly, for any damage or loss caused or alleged to be caused by or in connection with use of or reliance on any contents, goods, or services available on or through any such site or resource.</p>
+
+      <h2>Modification to scipost.org Portal and Terms and Conditions</h2>
+      <p>SciPost reserves the right to modify or discontinue, temporarily or permanently, any part of the scipost.org portal with or without notice at any time. SciPost reserves the right to change these Terms and Conditions at any time by posting changes online. You are responsible for reviewing regularly information posted online to obtain timely notice of such changes. Your continued use of the scipost.org portal after changes are posted constitutes your acceptance of this agreement as modified by the posted changes.</p>
+
+      <h2>Additional Terms for Certain Features</h2>
+      <p>Certain parts of the scipost.org portal are subject to registration and additional conditions which will be made available to you to read at the time of registration. Those terms and conditions are incorporated herein. If there is any conflict between these Terms and Conditions and/or specific terms and conditions appearing elsewhere on the scipost.org portal relating to specific material then the latter shall prevail. When registering, you are required to select a password. You are solely responsible for maintaining the confidentiality of your password, and any activity taken under your password. You are required to notify SciPost immediately of any known or suspected unauthorized use of your account or password and take reasonable steps to stop such use.</p>
+
+      <h2>General</h2>
+      <p>Any forbearance or indulgence by SciPost in enforcing any provision in these Terms and Conditions shall not affect SciPost's right of enforcement and any waiver of any breach shall not operate as a waiver of any subsequent or continuing breach. If any of these Terms and Conditions should be determined to be illegal, invalid or otherwise unenforceable by reason of the laws of any state or country in which these Terms and Conditions are intended to be effective, then to the extent and within the jurisdiction which that Term and Condition is illegal, invalid or unenforceable, it shall be severed and deleted from the clause and the remaining terms and conditions shall survive, remain in full force and effect and continue to be binding an enforceable. These Terms and Conditions shall be governed by and construed in accordance with the laws of New York, without regard to its conflict of law principles. Disputes arising here from shall be exclusively subject to the jurisdiction of the courts of new York. If there is any conflict between these Terms and Conditions and/or specific terms appearing elsewhere on the scipost.org portal relating to specific material then the latter shall prevail.</p>
+
+      <h2>Questions and Comments</h2>
+      <p>If you have any questions or comments about these Terms and Conditions, please contact <a href="mailto:admin@scipost.org">admin@scipost.org</a>.</p>
+
+    </div>
+</section>
+
+
+{% endif %} <!-- temporary strip -->
+
+{% endblock bodysup %}
diff --git a/scipost/urls.py b/scipost/urls.py
index eac4e701bb58ec273abaf2fbe67a05126b140886..0041b3a6ea20e8bb4fc6e2d542eb917984a11a0b 100644
--- a/scipost/urls.py
+++ b/scipost/urls.py
@@ -10,6 +10,8 @@ urlpatterns = [
     ## Info
     url(r'^about$', TemplateView.as_view(template_name='scipost/about.html'), name='about'),
     url(r'^FAQ$', TemplateView.as_view(template_name='scipost/FAQ.html'), name='FAQ'),
+    url(r'^terms_and_conditions$', TemplateView.as_view(template_name='scipost/terms_and_conditions.html'), name='terms_and_conditions'),
+    url(r'^privacy_policy$', TemplateView.as_view(template_name='scipost/privacy_policy.html'), name='privacy_policy'),
     #url(r'^description$', views.description, name='description'),
     url(r'^peer_witnessed_refereeing$', TemplateView.as_view(template_name='scipost/peer_witnessed_refereeing.html'), name='peer_witnessed_refereeing'),