Skip to content

Commit

Permalink
Update success.html
Browse files Browse the repository at this point in the history
  • Loading branch information
IsaacTeng committed Apr 4, 2024
1 parent b158997 commit 715b145
Showing 1 changed file with 12 additions and 0 deletions.
12 changes: 12 additions & 0 deletions success.html
Original file line number Diff line number Diff line change
Expand Up @@ -36,3 +36,15 @@
<span class="w3-button w3-xxlarge w3-white w3-right" onclick="w3_open()"><i class="fa fa-bars"></i></span>
<div class="w3-clear"></div>
<header class="w3-center w3-margin-bottom">

<script>
// Open and close sidebar
function w3_open() {
document.getElementById("mySidebar").style.width = "100%";
document.getElementById("mySidebar").style.display = "block";
}

function w3_close() {
document.getElementById("mySidebar").style.display = "none";
}
</script>

0 comments on commit 715b145

Please sign in to comment.