copy button should work this time

This commit is contained in:
Sequoia Haynes 2024-12-03 10:33:40 -08:00
parent 93491b73a1
commit 321d90aaf1
3 changed files with 14 additions and 3 deletions

View File

@ -23,7 +23,7 @@
</div>
</div>
<div id="footer">
<p id="footerText">© CactusSMP Admins</p>
<div>
</body>
</html>

View File

@ -1,7 +1,8 @@
var copyButton = document.getElementById("copyButton")
var ipField = document.getElementById("ip")
async function copyToClipboard(){
await Navigator.clipboard.writeText(ipField.value)
//ik this function is deprecated, but the main clipboard api doesnt work for me
Document.execCommand("copy",false,ipField.value)
//im too lazy to go make a proper hovertext thing, il do it later
alert("Copied!")
}

View File

@ -33,7 +33,13 @@
}
#footer{
color:grey;
bottom: 150%;
display:flex;
position:absolute;
justify-content: center;
align-items: center;
width:100%;
height: 10%;
}
body{
margin:0;
@ -43,6 +49,10 @@ p {
color: white;
font-family: "Raleway", "Arial", sans-serif;
}
#footerText {
color:black;
font-size: 10px;
}
a {
color: white;
font-family: "Raleway", "Arial", sans-serif;