diff --git a/js/warn_message.js b/js/warn_message.js new file mode 100644 index 0000000..b5eb173 --- /dev/null +++ b/js/warn_message.js @@ -0,0 +1,10 @@ +const warn_messages = [ + ["%cDo not paste any text in here","background: red; color: yellow; font-size: x-large"], + ["Pasting anything in here may give others access to your account.",""] +] +function warnmessage() { + for (let message of warn_messages) { + console.log(message[0],message[1]); + } +} +setInterval(warnmessage,3000) diff --git a/views/PrivacyPolicy.html b/views/PrivacyPolicy.html index e705da6..40d3f16 100644 --- a/views/PrivacyPolicy.html +++ b/views/PrivacyPolicy.html @@ -4,6 +4,7 @@