-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathscript.js
32 lines (31 loc) · 1.02 KB
/
script.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
var message = document.getElementById("message");
var textBox = document.getElementById("message-text");
var shadow = document.getElementById("shadow");
function hide(elmnt) {
elmnt.style.visibility = "hidden";
}
function show(elmnt) {
elmnt.style.visibility = "visible";
}
function notify(text) {
textBox.innerHTML = text;
show(shadow);
show(message);
}
var createAccount = `
Create a new Mycelium Games account
<br>
Enter a new username:
<input type="text" placeholder="Username" autocomplete="off">
<br>
Enter a new password:
<input type="password" placeholder="Password" autocomplete="off">`;
var signIn = `
Mycelium Games sign in / [<span class="link" onclick="notify(createAccount)">Create account</span>]
<br>
Enter your username:
<input type="text" placeholder="Username" autocomplete="off">
<br>
Enter your password:
<input type="password" placeholder="Password" autocomplete="off">
`;