2021-03-26 07:41:06 +00:00
<!DOCTYPE html>
2021-03-15 13:03:29 +00:00
< html lang = "en" >
< head >
<!-- Default page settings -->
2021-04-06 23:54:42 +00:00
< title > Admin Panel< / title >
2021-03-15 13:03:29 +00:00
< meta charset = "utf-8" >
< meta name = "viewport" content = "width=device-width, initial-scale=1" >
< link rel = "shortcut icon" href = "../Images/UFO.png" / >
<!-- Default page settings end -->
<!-- CSS -->
< link href = "https://cdn.jsdelivr.net/npm/bootstrap@5.0.0-beta2/dist/css/bootstrap.min.css" rel = "stylesheet" integrity = "sha384-BmbxuPwQa2lc/FVzBcNJ7UAyJxM6wuqIj61tLrc4wSX0szH/Ev+nYRRuWlolflfl" crossorigin = "anonymous" >
< link rel = "stylesheet" href = "../Styles/Index.css" / >
< link rel = "stylesheet" href = "../Styles/AdminPage.css" / >
< link rel = "stylesheet" href = "../Styles/minibar.min.css" / >
< link rel = "stylesheet" href = "https://cdnjs.cloudflare.com/ajax/libs/font-awesome/5.15.2/css/all.min.css" integrity = "sha512-HK5fgLBL+xu6dm/Ii3z4xhlSUyZgTT9tuc/hSrtw6uzJOvgRr2a9jyxxT1ely+B+xFAmJKVSTbpM/CuL7qxO8w==" crossorigin = "anonymous" / >
<!-- CSS end -->
<!-- Header scripts -->
< script src = "https://code.jquery.com/jquery-3.6.0.min.js" integrity = "sha256-/xUj+3OJU5yExlq6GSYGSHk7tPXikynS7ogEvDej/m4=" crossorigin = "anonymous" > < / script >
2021-04-06 23:54:42 +00:00
< script src = "https://cdn.jsdelivr.net/npm/axios/dist/axios.min.js" > < / script >
2021-03-15 13:03:29 +00:00
< script src = "https://cdn.jsdelivr.net/npm/@popperjs/core@2.6.0/dist/umd/popper.min.js" integrity = "sha384-KsvD1yqQ1/1+IA7gi3P0tyJcT3vR+NdBTt13hSJ2lnve8agRGXTTyNaBYmCR/Nwi" crossorigin = "anonymous" > < / script >
< script src = "https://cdn.jsdelivr.net/npm/bootstrap@5.0.0-beta2/dist/js/bootstrap.min.js" integrity = "sha384-nsg8ua9HAw1y0W1btsyWgBklPnCUAFLuTMS2G72MMONqmOymq585AcH49TLBQObG" crossorigin = "anonymous" > < / script >
<!-- Header scripts end -->
< / head >
< body >
2021-04-06 23:54:42 +00:00
< div class = "HeaderPanel" >
< div class = "HeaderLeft" >
< a style = "display: inline-block;" href = "../Index.html" >
< i class = "fas fa-arrow-left" > < / i >
< / a >
< / div >
< div class = "HeaderTitle" >
< h2 style = "margin-bottom: 0px" >
Admin Panel
< / h2 >
2021-03-15 13:03:29 +00:00
< / div >
2021-04-06 23:54:42 +00:00
< / div >
2021-03-26 07:41:06 +00:00
<!-- Opret game jam -->
< br / >
< br / >
2021-04-06 23:54:42 +00:00
2021-03-26 07:41:06 +00:00
< h3 > Administration< / h3 >
< h5 > Opret Game Jam< / h5 >
2021-04-06 23:54:42 +00:00
2021-03-26 07:41:06 +00:00
< div >
2021-04-06 23:54:42 +00:00
< form id = "createGameJam" method = "POST" >
2021-03-26 07:41:06 +00:00
< label for = "nameOfGameJam" > Indtast navn på Game Jam:< / label >
2021-04-06 23:54:42 +00:00
< input type = "text" name = "newGameJam" id = "nameOfGameJam" >
2021-03-26 07:41:06 +00:00
< br / >
2021-04-06 23:54:42 +00:00
2021-03-26 07:41:06 +00:00
< label for = "startDate" > Start dato:< / label >
< input type = "date" name = "startDate" id = "startDate" >
2021-04-06 23:54:42 +00:00
2021-03-26 07:41:06 +00:00
< br / >
2021-04-06 23:54:42 +00:00
2021-03-26 07:41:06 +00:00
< label for = "endDate" > Slut dato:< / label >
< input type = "date" name = "endDate" id = "endDate" >
2021-04-06 23:54:42 +00:00
2021-03-26 07:41:06 +00:00
< br / >
2021-04-06 23:54:42 +00:00
2021-03-26 07:41:06 +00:00
< label for = "startTime" > Start tidspunkt:< / label >
2021-04-06 23:54:42 +00:00
< input type = "time" name = "startTime" id = "startTime" min = "00:00" max = "24:00" value = "00:00" pattern = "[0-9]{2}:[0-9]{2}" >
2021-03-26 07:41:06 +00:00
< br / >
2021-04-06 23:54:42 +00:00
2021-03-26 07:41:06 +00:00
< label for = "endDate" > Slut tidspunkt:< / label >
2021-04-06 23:54:42 +00:00
< input type = "time" name = "endTime" id = "endTime" min = "00:00" max = "24:00" value = "00:00" pattern = "[0-9]{2}:[0-9]{2}" >
< br / >
< label for = "keyWord" > Emne / Keywords (Ikke obligatorisk):< / label >
< input type = "text" name = "keyWord" id = "keyWord" >
2021-03-26 07:41:06 +00:00
< br / >
2021-04-06 23:54:42 +00:00
2021-03-26 07:41:06 +00:00
< p > Indsæt en beskrivelse af Gam jammet< / p >
2021-04-06 23:54:42 +00:00
2021-03-26 07:41:06 +00:00
< div class = "form-floating" >
< textarea class = "form-control" name = "description" id = "description" placeholder = "Leave a comment here" id = "floatingTextarea2" style = "height: 100px" > < / textarea >
< label for = "floatingTextarea2" > Beskrivelse< / label >
< / div >
2021-04-06 23:54:42 +00:00
< input type = "submit" name = "newGameJam" id = "indsend" value = "Indsend" >
< button type = "button" id = "testTime" > Test< / button >
2021-03-26 07:41:06 +00:00
< / form >
2021-03-15 13:03:29 +00:00
< / div >
2021-03-26 07:41:06 +00:00
<!-- Opret game jam slut -->
2021-03-15 13:03:29 +00:00
<!-- Body scripts -->
< script src = "../Javascript/minibar.min.js" > < / script >
2021-03-26 07:41:06 +00:00
< script src = "../Javascript/AddEvent.js" > < / script >
2021-04-06 23:54:42 +00:00
< script src = "../Javascript/AddGameJam.js" > < / script >
2021-03-15 13:03:29 +00:00
<!-- Body scripts end -->
< / body >
< / html >