@@ -1,54 +1,61 @@
<!DOCTYPE html>
< html >
< head >
< title > Welcome - Do it later</ title >
< meta charset ="utf-8 "/>
< link href ="https://fonts.googleapis.com/css?family=Roboto+Slab " rel ="stylesheet ">
< link rel ="stylesheet " href ="https://ajax.aspnetcdn.com/ajax/bootstrap/3.3.7/css/bootstrap.min.css ">
< script src ="https://ajax.aspnetcdn.com/ajax/jQuery/jquery-1.12.4.min.js "> </ script >
< script src ="https://ajax.aspnetcdn.com/ajax/bootstrap/3.3.7/bootstrap.min.js "> </ script >
< link rel ="stylesheet " href ="style.css ">
</ head >
< body >
< div class ="container-fluid col-lg-12 ">
< html >
< head >
< title > Welcome - Do it later</ title >
< meta charset ="utf-8 " />
< link href ="https://fonts.googleapis.com/css?family=Roboto+Slab "
rel ="stylesheet ">
< link rel ="stylesheet "
href ="https://ajax.aspnetcdn.com/ajax/bootstrap/3.3.7/css/bootstrap.min.css ">
< script
src ="https://ajax.aspnetcdn.com/ajax/jQuery/jquery-1.12.4.min.js "> </ script >
< script
src ="https://ajax.aspnetcdn.com/ajax/bootstrap/3.3.7/bootstrap.min.js "> </ script >
< link rel ="stylesheet " href ="style.css ">
</ head >
< body >
< div class ="container-fluid col-lg-12 ">
< nav class ="navbar navbar-inverse ">
< div class ="container-fluid ">
< div class ="navbar-header ">
< a class ="navbar-brand " href ="main.html "> Do It Later</ a >
</ div >
< ul class ="nav navbar-nav ">
< li class ="navbar-text "> Selected Group</ li >
< li class ="pointer "> < a data-toggle ="modal " data-target ="#addMemberModal "> Add User</ a > </ li >
< li class ="dropdown ">
< a class ="dropdown-toggle pointer " data-toggle ="dropdown "> Groups
< span class ="caret "> </ span > </ a >
< ul id ="Group_List " class ="dropdown-menu "> </ ul >
</ li >
< li > < a data-toggle ="modal " data-target ="#newGroupModal " href =""> Add Group</ a > </ li >
< li > < a href ="chat.html " target ="_blank "> Group Chat</ a > </ li >
</ ul >
< ul class ="nav navbar-nav navbar-right ">
< li class ="navbar-text "> < span class ="glyphicon glyphicon-user "> </ span > Max Mustermann</ li >
< li > < a href ="index.html "> < span class ="glyphicon glyphicon-log-out "> </ span > Logout</ a > </ li >
</ ul >
</ div >
</ nav >
< div id ="Task_List ">
< div id ="open_tasks "> </ div >
< div id ="working_tasks "> </ div >
< div id ="done_tasks "> </ div >
< nav class ="navbar navbar-inverse ">
< div class ="container-fluid ">
< div class ="navbar-header ">
< a class ="navbar-brand " href ="main.html "> Do It Later</ a >
</ div >
< script src ="script.js "> </ script >
< script >
< ul class ="nav navbar-nav ">
< li class ="navbar-text "> Selected Group</ li >
< li class ="pointer "> < a data-toggle ="modal "
data-target ="#addMemberModal "> Add User</ a > </ li >
< li class ="dropdown "> < a class ="dropdown-toggle pointer "
data-toggle ="dropdown "> Groups < span class ="caret "> </ span > </ a >
< ul id ="Group_List " class ="dropdown-menu "> </ ul > </ li >
< li > < a data-toggle ="modal " data-target ="#newGroupModal "
href =""> Add Group</ a > </ li >
< li > < a href ="chat.html " target ="_blank "> Group Chat</ a > </ li >
</ ul >
< ul class ="nav navbar-nav navbar-right ">
< li class ="navbar-text "> < span class ="glyphicon glyphicon-user "> </ span >
Max Mustermann</ li >
< li > < a href ="index.html "> < span
class ="glyphicon glyphicon-log-out "> </ span > Logout</ a > </ li >
</ ul >
</ div >
</ nav >
< div id ="Task_List ">
< div id ="open_tasks "> </ div >
< div id ="working_tasks "> </ div >
< div id ="done_tasks "> </ div >
</ div >
< script src ="script.js "> </ script >
< script >
multipleCards ( cards ) ;
multipleGroups ( groups ) ;
</ script >
< button id ="fixedButton " data-toggle ="modal " data-target ="#newCardModal "> +</ button >
< script >
< button id ="fixedButton " data-toggle ="modal "
data-target ="#newCardModal "> +</ button >
< script >
$ ( "#fixedButton" ) . click ( ( ) => {
$ ( "input#title" ) . val ( "" ) ;
$ ( "input#content" ) . val ( "" ) ;
@@ -58,90 +65,91 @@
} ) ;
</ script >
<!-- MODAL: Hinzufügen einer neuen Karte -->
< div id ="newCardModal " class ="modal fade " role ="dialog ">
< div class ="modal-dialog ">
< div class ="modal-content ">
< div class ="modal-header ">
< button type ="button " class ="close " data-dismiss ="modal "> ×</ button >
< h4 class ="modal-title "> Neue Karte hinzufügen</ h4 >
<!-- MODAL: Hinzufügen einer neuen Karte -->
< div id ="newCardModal " class ="modal fade " role ="dialog ">
< div class ="modal-dialog ">
< div class ="modal-content ">
< div class ="modal-header ">
< button type ="button " class ="close " data-dismiss ="modal "> ×</ button >
< h4 class ="modal-title "> Neue Karte hinzufügen</ h4 >
</ div >
< div class ="modal-body ">
< form >
< div class ="form-group ">
< label for ="recipient-name " class ="form-control-label "> Titel:</ label >
< input type ="text " class ="form-control " id ="title ">
</ div >
< div class ="modal-body ">
< form >
< div class ="form-group ">
< label for ="recipient-name " class ="form-control-label "> Titel:</ label >
< input type ="text " class ="form-control " id ="title ">
</ div >
< div class ="form-group ">
< label for ="message-text " class ="form-control-label "> Inhalt:</ label >
< input type ="text " class ="form-control " id ="content ">
</ div >
< div class ="form-group ">
< label for ="recipient-name " class ="form-control-label "> Status:</ label >
< input type ="text " class ="form-control " id ="status ">
</ div >
< div class ="form-group ">
< label for ="recipient-name " class ="form-control-label "> Bearbeiter:</ label >
< input type ="text " class ="form-control " id ="assignment ">
</ div >
</ form >
< div class ="form-group ">
< label for ="message-text " class ="form-control-label "> Inhalt:</ label >
< input type ="text " class ="form-control " id ="content ">
</ div >
< div class ="modal-footer ">
< button id =" newCardModalConfirm " type =" button " data-dismiss =" modal " > Create </ button >
< button id =" newCardModalClose " type =" button " data-dismiss =" modal " > Close </ button >
< div class ="form-group ">
< label for =" recipient-name " class =" form-control-label " > Status: </ label >
< input type =" text " class =" form-control " id =" status " >
</ div >
</ div >
< div class ="form-group ">
< label for ="recipient-name " class ="form-control-label "> Bearbeiter:</ label >
< input type ="text " class ="form-control " id ="assignment ">
</ div >
</ form >
</ div >
< div class ="modal-footer ">
< button id ="newCardModalConfirm " type ="button "
data-dismiss ="modal "> Create</ button >
< button id ="newCardModalClose " type ="button " data-dismiss ="modal "> Close</ button >
</ div >
</ div >
</ div >
</ div >
<!-- MODAL: Erstellen einer neuen Gruppe -->
< div id ="newGroupModal " class ="modal fade " role ="dialog ">
< div class ="modal-dialog ">
< div class ="modal-content ">
< div class ="modal-header ">
< button type ="button " class ="close " data-dismiss ="modal "> ×</ button >
< h4 class ="modal-title "> Neue Gruppe hinzufügen</ h4 >
</ div >
< div class ="modal-body ">
< form >
< div class ="form-group ">
< label for ="recipient-name " class ="form-control-label "> Name:</ label >
< input type ="text " class ="form-control " id ="name ">
</ div >
</ form >
</ div >
< div class ="modal-footer ">
< button type ="button " data-dismiss ="modal "> Create</ button >
< button type ="button " data-dismiss ="modal "> Close</ button >
<!-- MODAL: Erstellen einer neuen Gruppe -->
< div id ="newGroupModal " class ="modal fade " role ="dialog ">
< div class ="modal-dialog ">
< div class ="modal-content ">
< div class ="modal-header ">
< button type ="button " class ="close " data-dismiss ="modal "> ×</ button >
< h4 class ="modal-title "> Neue Gruppe hinzufügen</ h4 >
</ div >
< div class ="modal-body ">
< form >
< div class ="form-group ">
< label for ="recipient-name " class ="form-control-label "> Name:</ label >
< input type ="text " class ="form-control " id ="name ">
</ div >
</ div >
</ form >
</ div >
< div class ="modal-footer ">
< button type ="button " data-dismiss ="modal "> Create</ button >
< button type ="button " data-dismiss ="modal "> Close</ button >
</ div >
</ div >
<!-- MODAL: Hinzufügen eines neuen Users zum Board -->
< div id ="addMemberModal " class ="modal fade " role ="dialog ">
< div class ="modal-dialog ">
< div class ="modal-content ">
< div class ="modal-header ">
< button type ="button " class ="close " data-dismiss ="modal "> ×</ button >
< h4 class ="modal-title "> Füge Mitglieder hinzu</ h4 >
</ div >
< div class ="modal-body ">
< form >
< div class ="form-group ">
< label for ="recipient-name " class ="form-control-label "> Name:</ label >
< input type ="text " class ="form-control " id ="name ">
</ div >
</ form >
</ div >
< div class ="modal-footer ">
< button type ="button " data-dismiss ="modal "> Confirm</ button >
< button type ="button " data-dismiss ="modal "> Close</ button >
</ div >
</ div >
<!-- MODAL: Hinzufügen eines neuen Users zum Board -->
< div id ="addMemberModal " class ="modal fade " role ="dialog ">
< div class ="modal-dialog ">
< div class ="modal-content ">
< div class ="modal-header ">
< button type ="button " class ="close " data-dismiss ="modal "> ×</ button >
< h4 class ="modal-title "> Füge Mitglieder hinzu</ h4 >
</ div >
< div class ="modal-body ">
< form >
< div class ="form-group ">
< label for ="recipient-name " class ="form-control-label "> Name:</ label >
< input type ="text " class ="form-control " id ="name ">
</ div >
</ div >
</ form >
</ div >
< div class ="modal-footer ">
< button type ="button " data-dismiss ="modal "> Confirm</ button >
< button type ="button " data-dismiss ="modal "> Close</ button >
</ div >
</ div >
</ div >
</ body >
</ html >
</ div >
</ div >
</ body >
</ html >