diff --git a/server/boot/randomAPIs.js b/server/boot/randomAPIs.js index a83a0dbd1e..8640be2040 100644 --- a/server/boot/randomAPIs.js +++ b/server/boot/randomAPIs.js @@ -37,6 +37,8 @@ module.exports = function(app) { router.get('/terms', terms); router.get('/privacy', privacy); router.get('/code-of-conduct', codeOfConduct); + router.get('/academic-honesty', academicHonesty); + router.get( '/the-fastest-web-page-on-the-internet', theFastestWebPageOnTheInternet @@ -175,7 +177,7 @@ module.exports = function(app) { function privacy(req, res) { res.render('resources/privacy', { - title: 'Privacy' + title: "Privacy policy" }); } @@ -185,6 +187,12 @@ module.exports = function(app) { }); } + function academicHonesty(req, res) { + res.render('resources/academic-honesty', { + title: 'Academic Honesty policy' + }); + } + function theFastestWebPageOnTheInternet(req, res) { res.render('resources/the-fastest-web-page-on-the-internet', { title: 'This is the fastest web page on the internet' diff --git a/server/views/resources/academic-honesty.jade b/server/views/resources/academic-honesty.jade new file mode 100644 index 0000000000..e903b42a6c --- /dev/null +++ b/server/views/resources/academic-honesty.jade @@ -0,0 +1,13 @@ +extends ../layout +block content + .col-xs-12.col-sm-8.col-sm-offset-2.col-md-6.col-md-offset-3 + html. +
Before we issue our verified certification to a camper, he or she must accept our Academic Honesty Pledge, which reads:
+"I understand that plagiarism means copying someone else’s work and presenting the work as if it were my own, without clearly attributing the original author.
+"I understand that plagiarism is an act of intellectual dishonesty, and that people usually get kicked out of university or fired from their jobs if they get caught plagiarizing.
+"Aside from using open source libraries such as jQuery and Bootstrap, and short snippets of code which are clearly attributed to their original author, 100% of the code in my projects was written by me, or along with another camper with whom I was pair programming in real time.
+"I pledge that I did not plagiarize any of my Free Code Camp work. I understand that Free Code Camp’s team will audit my projects to confirm this."
+In the situations where we discover instances of unambiguous plagiarism, we will replace the camper in question’s certification with a message that "Upon review, this account has been flagged for academic dishonesty."
+As an academic institution that grants achievement-based certifications, we take academic honesty very seriously. If you have any questions about this policy, or suspect that someone has violated it, you can email team@freecodecamp.com and we will investigate.
\ No newline at end of file