PR #5: Add equipment screen functionality (merges main with dev)

This commit is contained in:
kittentm 2026-03-18 21:13:52 +01:00
commit 429a1eb6ff
No known key found for this signature in database
GPG key ID: AC43DFDBC1F44A91
411 changed files with 17956 additions and 779 deletions

View file

@ -1,6 +1,5 @@
<!DOCTYPE html>
<html class="no-js" data-id="8a7cdef9" lang="en">
<head>
<html class="no-js" data-id="8a7cdef9"> <head>
<meta charset="utf-8"/>
<meta content="IE=edge,chrome=1" http-equiv="X-UA-Compatible"/>
<meta content="" name="description"/>
@ -13,7 +12,6 @@
<meta content="no-cache" http-equiv="pragma"/>
<title>Sign In to Splatfestival Network</title>
<link href="../splatfestival/css/style-auth.css" rel="stylesheet"/>
<script src="/config.js"></script>
<script src="../splatfestival/js/base_e42dadd1.js"></script>
<script src="splatfestivalyay.js"></script>
<script src="../splatfestival/353f197638abe79a7d2dc7a7fd522d075d11521d/satelliteLib-df3d4f52ec08e860f63e4ce57be273a0ed391ab8.js"></script>
@ -64,8 +62,7 @@
<label for="remember_box">Remember Me</label>
</div>
<input class="hb-btn hb-is-decide" id="btn_text" type="submit" value="Sign In"/>
<p><a class="hb-icon-external" href="https://discord.gg/grMSxZf" target="_blank">Forgot your password?</a></p>
</div>
<p><a class="hb-icon-external" href="https://discord.gg/grMSxZf" target="_blank">Forgot your password?</a><br/>
</form>
</div>
</div>

View file

@ -2,15 +2,14 @@ $(document).ready(function () {
const form = $("#auth-form");
const errorContainer = $("#auth-error");
const urlParams = new URLSearchParams(window.location.search);
const apiBase = CONFIG.API_BASE_URL;
$("#frontend_origin").val(window.location.origin);
form.attr("action", apiBase + "/api/v2/sso/spfn/generate_token");
form.attr("action", "/api/v2/sso/spfn/generate_token");
async function checkExistingSession() {
try {
const response = await fetch(apiBase + "/api/v1/session_id/check", {
const response = await fetch("/api/v1/session_id/check", {
method: 'GET',
credentials: 'include'
});