2024-05-04 14:44:23 +02:00
<!doctype html>
< html lang = "en" data-bs-theme = "dark" >
< head >
< title > OpenWF WebUI< / title >
< link
href="https://cdn.jsdelivr.net/npm/bootstrap@5.3.3/dist/css/bootstrap.min.css"
rel="stylesheet"
integrity="sha384-QWTKZyjpPEjISv5WaRU9OFeRpok6YctnYmDr5pNlyT2bRjXh0JMhjY6hW+ALEwIH"
crossorigin="anonymous"
/>
< / head >
< body >
< div class = "container pt-3 pb-3" >
< h1 > OpenWF WebUI< / h1 >
< div id = "login-view" >
< p > Login using your OpenWF account credentials.< / p >
< form onsubmit = "doLogin();return false;" >
< label for = "email" > Email address< / label >
< input class = "form-control" type = "email" id = "email" required / >
< br / >
< label for = "password" > Password< / label >
< input class = "form-control" type = "password" id = "password" required / >
< br / >
< button class = "btn btn-primary" type = "submit" > Login< / button >
< / form >
< / div >
< div id = "main-view" class = "d-none" >
< p > Hello, < b class = "displayname" > < / b > ! < a href = "#" onclick = "logout();" > Logout< / a > < / p >
2024-05-07 11:55:16 +02:00
< p > Note: Changes made here will only be reflected in-game when the game re-downloads your inventory. Visiting the navigation should be the easiest way to trigger that.< / p >
2024-05-06 15:14:09 +02:00
< div class = "row" >
< div class = "col-lg-6" >
< div class = "card mb-3" >
< h5 class = "card-header" > Warframes< / h5 >
< div class = "card-body" >
< table class = "table table-striped w-100" >
< tbody id = "warframe-list" > < / tbody >
< / table >
< form class = "input-group" onsubmit = "doAcquireWarframe();return false;" >
< button class = "btn btn-primary" type = "submit" > Add< / button >
< input class = "form-control" id = "warframe-to-acquire" list = "datalist-warframes" / >
< / form >
2024-05-04 14:44:23 +02:00
< / div >
2024-05-06 15:14:09 +02:00
< / div >
2024-05-04 14:44:23 +02:00
< / div >
2024-05-06 15:14:09 +02:00
< div class = "col-lg-6" >
< div class = "card mb-3" >
< h5 class = "card-header" > Weapons< / h5 >
< div class = "card-body" >
< table class = "table table-striped w-100" >
< tbody id = "weapon-list" > < / tbody >
< / table >
< form class = "input-group" onsubmit = "doAcquireWeapon();return false;" >
< button class = "btn btn-primary" type = "submit" > Add< / button >
2024-05-06 23:24:22 +02:00
< input class = "form-control" id = "weapon-to-acquire" list = "datalist-weapons" / >
2024-05-06 15:14:09 +02:00
< / form >
2024-05-04 14:44:23 +02:00
< / div >
2024-05-06 15:14:09 +02:00
< / div >
2024-05-04 14:44:23 +02:00
< / div >
< / div >
< / div >
< / div >
< datalist id = "datalist-warframes" > < / datalist >
< datalist id = "datalist-weapons" > < / datalist >
< script
src="https://code.jquery.com/jquery-3.6.0.min.js"
integrity="sha256-/xUj+3OJU5yExlq6GSYGSHk7tPXikynS7ogEvDej/m4="
crossorigin="anonymous"
>< / script >
< script src = "https://cdn.jsdelivr.net/gh/angeal185/whirlpool-js/dist/whirlpool-js.min.js" > < / script >
< script src = "script.js" > < / script >
< / body >
< / html >