mirror of
https://github.com/jakejarvis/jarv.is.git
synced 2025-04-26 17:48:30 -04:00
7 lines
180 B
JavaScript
Executable File
7 lines
180 B
JavaScript
Executable File
function loadPrompt() {
|
|
var code = prompt("Please enter your five-character code.", "");
|
|
|
|
if(code != null) {
|
|
window.location = 'index.php?pass=' + code;
|
|
}
|
|
} |