You have accepted our Academic Honesty Policy.
+- 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 freeCodeCamp.org work. - I understand that freeCodeCamp.org’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.org - and we will investigate. -
+ {honesty} diff --git a/client/src/resources/honesty-policy.js b/client/src/resources/honesty-policy.js new file mode 100644 index 0000000000..abfc6fe265 --- /dev/null +++ b/client/src/resources/honesty-policy.js @@ -0,0 +1,43 @@ +import React from 'react'; + +const policy = [ ++ 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 freeCodeCamp.org work. I + understand that freeCodeCamp.org’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.org + and we will investigate. +
+].map((el, i) => ({...el, key: `honesty-${i}`})); + +export default policy;