MBTI/static/js/printProjectInfo.js
2023-12-14 14:30:46 +08:00

12 lines
608 B
JavaScript

$(document).ready(function () {
var license = "MIT License";
var github = "https://github.com/MskTmi/MBTI";
var disclaimer = "This project is for learning and reference only, and does not bear any responsibility.";
console.group("Project Information");
console.log("%cThis project is licensed under the " + license, "color: darkorange; font-size: 20px;");
console.log("%cThe source code for this project is hosted on " + github, "color: darkorange; font-size: 20px;");
console.log("%cDisclaimer: " + disclaimer, "color: darkorange; font-size: 20px;");
console.groupEnd();
})