Skip to content
Snippets Groups Projects
Commit 4e5ae2c6 authored by quark's avatar quark
Browse files

added researchReportPage

parent 369bb116
No related branches found
No related tags found
No related merge requests found
html, body {
width: 100%;
height: 100%;
margin: 0;
padding: 0;
}
.researchReportForm{
display: grid;
grid-gap: 10px;
grid-template-columns: 1fr 1fr 1fr;
grid-template-areas:
"sidebar header ."
"sidebar editor editor"
"sidebar editor buttons"
}
.researchReportMenu{
background: gray;
color: White;
grid-area: sidebar;
}
.researchReportTitlebar{
background: white;
color: black;
grid-area: header;
}
.researchReportEditor{
grid-area: editor;
background: white;
color: black;
}
.researchReportButtons{
grid-area: buttons;
background: gray;
color: black;
}
<!DOCTYPE html>
<html>
<head>
<script src="https://cdn.jsdelivr.net/npm/inscrybmde@1.11.3/dist/inscrybmde.min.js"></script>
<link rel="stylesheet" type="text/css" href="../assets/css/researchReport.css">
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/inscrybmde@1.11.3/dist/inscrybmde.min.css">
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.3.1/jquery.min.js"></script>
<script src="../assets/js/utility.js"></script>
<title>Forschungsbericht erstellen</title>
</head>
<body>
<h1> Forschunhsbericht erstellen </h1>
<form id="researchReportform" class="form-researchReport" method="POST" action="../rest/researchReport/save">
<input type="hidden" name="student" value="0">
<input type="hidden" name="project" value="0">
<div class="researchReportForm">
<div class = "researchReportMenu"></div>
<div class = "researchReportTitlebar"></div>
<div class ="researchReportEditor">
<textarea id = "editor" name="text" form="researchReportForm" >
</textarea>
</div>
<div class="ResearchReportButtons">
<input type="submit">
<button> Zur&uuml;ck </button>
</div>
</div>
</form>
<script>
</script>
</body>
</html>
\ No newline at end of file
......@@ -40,6 +40,30 @@ CREATE TABLE projectuser
alter table users
add isStudent tinyint(1) default '1' null;
CREATE TABLE researchReport (
`title` varchar(400) NOT NULL,
`method` varchar(10000) NOT NULL,
`research` varchar(10000) NOT NULL,
`researchResult` varchar(10000) NOT NULL,
`evaluation` varchar(10000) NOT NULL,
)ENGINE=InnoDB DEFAULT CHARSET=utf8;
//ToDo
CREATE TABLE timeplan(
`reportID` varchar(400) NOT NULL,
)ENGINE=InnoDB DEFAULT CHARSET=utf8;
CREATE TABLE researchQuestion(
`reportID` varchar(400) NOT NULL,
)ENGINE=InnoDB DEFAULT CHARSET=utf8;
CREATE TABLE bibliography(
`reportID` varchar(400) NOT NULL,
)ENGINE=InnoDB DEFAULT CHARSET=utf8;
CREATE TABLE learningGoals(
`reportID` varchar(400) NOT NULL,
)ENGINE=InnoDB DEFAULT CHARSET=utf8;
......
package unipotsdam.gf.modules.researchreports;
/* package unipotsdam.gf.modules.researchreports;
......@@ -24,3 +24,4 @@ public class ResearchReportTest {
}
}
*/
\ No newline at end of file
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment