Fixed login issue
This commit is contained in:
@@ -13,7 +13,6 @@
|
||||
<body>
|
||||
<div class="login-page" style="padding: 10% 0 0;">
|
||||
<div class="form">
|
||||
<h2 id="playerName"></h2>
|
||||
<div class="isa_error">
|
||||
ERROR TEXT
|
||||
</div>
|
||||
@@ -34,7 +33,7 @@
|
||||
</div>
|
||||
<script src="package://Dependencies/jquery-3.3.1.min.js"></script>
|
||||
<script type="text/javascript">
|
||||
$(".message a").click(function () {
|
||||
$(".message a").click(() => {
|
||||
$(".form-l").animate({ height: "toggle", opacity: "toggle" }, "slow");
|
||||
});
|
||||
|
||||
@@ -43,13 +42,9 @@
|
||||
});
|
||||
|
||||
function showError(error) {
|
||||
$(".isa_error").html(error);
|
||||
$(".isa_error").html(error.toString());
|
||||
$(".isa_error").slideDown();
|
||||
}
|
||||
|
||||
function SendDisplayname(name) {
|
||||
$("h2#playerName").text(name);
|
||||
}
|
||||
</script>
|
||||
<script src="login.js" type="text/javascript"></script>
|
||||
</body>
|
||||
|
||||
Reference in New Issue
Block a user