A music player that connects to your cloud/distributed storage.
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

Pass placeholder to prompt

+4 -3
+4 -3
src/Js/authentication.js
··· 49 49 } 50 50 51 51 52 - function prompt(question) { 52 + function prompt(question, placeholder) { 53 53 setTimeout(() => node.querySelector(".spinner").style.visibility = "hidden", 0); 54 54 55 55 return x0p({ 56 - inputPlaceholder: "example@5apps.com", 56 + inputPlaceholder: placeholder, 57 57 maxWidth: "95vw", 58 58 title: question, 59 59 type: "input", ··· 374 374 375 375 signIn: _ => new Promise((resolve, reject) => { 376 376 prompt( 377 - "What's your user address?" 377 + "What's your user address?", 378 + "example@5apps.com" 378 379 379 380 ).then(data => { 380 381 if (data.button === "cancel" || data.text.length === 0) {