119 lines
3.3 KiB
HTML
119 lines
3.3 KiB
HTML
<!DOCTYPE html>
|
|
<html style="height: 100%;">
|
|
<meta charset="utf-8">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1">
|
|
<link rel="stylesheet" href="https://www.w3schools.com/w3css/4/w3.css">
|
|
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/css/font-awesome.min.css">
|
|
<style>
|
|
body {margin:0;}
|
|
|
|
|
|
|
|
|
|
.button1 {
|
|
background-color: rgb(107, 110, 107);
|
|
color: white;
|
|
padding: 14px 20px;
|
|
margin: 8px;
|
|
border: none;
|
|
cursor: pointer;
|
|
width: auto;
|
|
}
|
|
div.ex1 {
|
|
background-color: lightblue;
|
|
width:auto;
|
|
height: 110px;
|
|
overflow: scroll;
|
|
margin: 8px;
|
|
}
|
|
button {
|
|
background-color: rgb(107, 110, 107);
|
|
color: white;
|
|
padding: 14px 20px;
|
|
margin: 8px;
|
|
border: none;
|
|
cursor: pointer;
|
|
width: 30%;
|
|
}
|
|
select {
|
|
font-size: .9rem;
|
|
padding: 2px 4px;
|
|
}
|
|
|
|
footer {
|
|
font-size: .8rem;
|
|
position: absolute;
|
|
bottom: 30px;
|
|
left: 30px;
|
|
}
|
|
@keyframes onload{
|
|
0% {opacity: 0}
|
|
100% {opacity: 1}
|
|
}
|
|
</style>
|
|
<body style="height: 100%">
|
|
<form action="/action_page.php" method="post" style="display: flex; flex-direction: column; justify-content: space-between; height: 100%" id="main">
|
|
|
|
<div >
|
|
<div style="text-align:center">
|
|
<div class="w3-light-grey">
|
|
<div class="w3-green" style="height:24px;width:25px" id="progressbar"></div>
|
|
</div>
|
|
|
|
</div>
|
|
|
|
<div style="text-align:center;align-items: center; justify-content: center; display: flex; flex-direction: column;">
|
|
<label style="font-size:24px;text-align:center" id="title">Title</label>
|
|
</div>
|
|
|
|
<div style="align-items:center; display: flex; flex-direction: column;">
|
|
|
|
<label style="font-size:14px;text-align:center;margin: 5px;">Trifft gar nicht zu</label>
|
|
|
|
<div>
|
|
<input type="checkbox" name="#" id="cb_0">
|
|
</div>
|
|
<div>
|
|
<input type="checkbox" name="#" id="cb_1">
|
|
</div>
|
|
<div>
|
|
<input type="checkbox" name="#" id="cb_2">
|
|
</div>
|
|
<div>
|
|
<input type="checkbox" name="#" id="cb_3">
|
|
</div>
|
|
<div>
|
|
<input type="checkbox" name="#" id="cb_4">
|
|
</div>
|
|
<div>
|
|
<input type="checkbox" name="#" id="cb_5">
|
|
</div>
|
|
<div>
|
|
<input type="checkbox" name="#" id="cb_6">
|
|
</div>
|
|
|
|
|
|
|
|
<label style="font-size:14px;text-align:center;margin: 5px;">Trifft voll zu</label>
|
|
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
|
|
</div>
|
|
<div style="text-align:center">
|
|
<button type="submit" style="margin-bottom: 1em;" id="nextQuestion">Weiter</button>
|
|
<button style="display: none;" id="admin_button">Änderungen Speichern</button>
|
|
<button style="display: none;" id="admin_skip">Skip All</button>
|
|
</div>
|
|
|
|
</form>
|
|
|
|
</body>
|
|
<script type="text/javascript" src="editAdmin.js"></script>
|
|
<script type="text/javascript" src="/app_54.js"></script>
|
|
</html>
|
|
|