2019-02-06 23:51:58 +00:00
<!DOCTYPE html>
< html lang = "en" dir = "ltr" >
2019-02-13 02:20:30 +00:00
< head >
< meta charset = "utf-8" >
2019-02-13 02:34:05 +00:00
< title > titanscout< / title >
< script src = "https://www.gstatic.com/firebasejs/5.7.2/firebase.js" > < / script >
< script src = "https://www.gstatic.com/firebasejs/5.8.0/firebase-firestore.js" > < / script >
2019-02-13 02:41:43 +00:00
< script src = "https://cdn.firebase.com/libs/firebaseui/3.5.1/firebaseui.js" > < / script >
2019-02-13 02:34:05 +00:00
< link type = "text/css" rel = "stylesheet" href = "https://cdn.firebase.com/libs/firebaseui/3.5.1/firebaseui.css" / >
< link rel = "stylesheet" href = "../style.css" type = "text/css" / >
< link href = "https://fonts.googleapis.com/css?family=Roboto" rel = "stylesheet" >
< script type = "text/javascript" src = "scripts.js" > < / script >
2019-02-13 02:20:30 +00:00
< / head >
< body >
< div id = "mySidenav" class = "sidenav" >
< a href = "javascript:void(0)" class = "closebtn" onclick = "closeNav()" > × < / a >
< a href = "../profile" > Profile< / a >
< a href = "#" > Team< / a >
2019-03-16 20:47:56 +00:00
< p > Scout Matches< / p >
< a href = "../scout/signUps" class = "scoutMatchLinks" > Sign Up For Matches< / a >
< a href = "../scout/rpts" class = "scoutMatchLinks" > Submit Scouting Reports< / a >
< a href = "../stats" > Tournament Stats< / a >
2019-02-13 02:20:30 +00:00
< / div >
< div id = "main" >
< span onclick = "openNav()" id = "topbar" >
< img id = "sideload" src = "https://upload.wikimedia.org/wikipedia/commons/thumb/b/b2/Hamburger_icon.svg/1200px-Hamburger_icon.svg.png" >
< / span >
< h1 id = "mainhead" > TitanScout- Your Teams< / h1 >
< p id = "status" > Loading...< / p >
< input type = "button" name = "Sign Out" value = "Sign Out" onclick = "signout();" id = "signout" class = "btn" >
< input type = "button" name = "DelAcc" value = "Delete Account" onclick = "deleteAccount();" id = "deleteacc" class = "btn" >
< h2 > Team Membership< / h2 >
< div id = "newstuff" >
< div >
2019-03-08 01:31:34 +00:00
< input type = "button" name = "CNT" value = "Request to Join a Team" class = "btn" onclick = "reqjt(document.getElementById('etn').value,document.getElementById('jcn').value);" >
2019-02-13 02:20:30 +00:00
< input type = "text" name = "TMN" value = "" placeholder = "Team Name" id = "etn" >
2019-03-08 01:31:34 +00:00
< input type = "text" name = "JC" value = "" placeholder = "Join Code" id = "jcn" >
2019-02-13 02:20:30 +00:00
< / div >
2019-02-06 23:51:58 +00:00
< / div >
2019-02-13 02:20:30 +00:00
< table id = "teammem" >
< / table >
< / div >
< / body >
2019-02-06 23:51:58 +00:00
< / html >