Compare commits

..

No commits in common. '1d9ea2b89142355e244cbc0f7aa40538e818ecdf' and 'e2fdb63cb107803dd685351583657f60f3fd6b64' have entirely different histories.

@ -20,9 +20,42 @@ img.pb {
height: auto;
}
.gif {
.load_body{
position: absolute;
top: 50%;
left: 50%;
position: fixed;
transform: translate(-50%, -50%);
}
left: 45%;
transform: translate(-50%,-50%);
background-color: #2a9d8f;
}
.progress{
position: relative;
height: 10px;
width: 1110%;
border: 10px solid #f4a261;
border-radius: 15px;
}
.progress .color{
position: absolute;
background-color: #ffffff;
width: 0px;
height: 10px;
border-radius: 15px;
animation: progres 4s infinite linear;
}
@keyframes progres{
0%{
width: 0%;
}
25%{
width: 50%;
}
50%{
width: 75%;
}
75%{
width: 85%;
}
100%{
width: 100%;
}
};

Binary file not shown.

Before

Width:  |  Height:  |  Size: 207 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 17 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 18 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 20 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 31 KiB

@ -4,14 +4,10 @@
<head>
<meta charset="UTF-8">
<!-- all infos about iphone app -->
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="apple-mobile-web-app-status-bar-style" content="white">
<meta name="apple-mobile-web-app-capable" content="yes">
<meta name="apple-mobile-web-app-title" content="MeetingOrganizer">
<link rel="apple-touch-icon" href="{% static 'img/iphone.png' %}">
<link rel="apple-touch-icon" sizes="152x152" href="{% static 'img/ipad_152.png' %}">
<link rel="apple-touch-icon" sizes="180x180" href="{% static 'img/ipad_180.png' %}">
<link rel="apple-touch-icon" sizes="167x167" href="{% static 'img/ipad_167.png' %}">
<!-- <link rel="apple-touch-icon" sizes="167x167" href="{% static 'img/mLD_iphoneIcon.png' %}">
<link rel="apple-touch-icon" sizes="180x180" href="{% static 'img/mLD_ipadIcon.png' %}"> -->
<!-- all others -->
<meta name="viewport" content="width=device-width, initial-scale=1.0">
@ -25,22 +21,6 @@
{% block pushup %}
{% endblock %}
<div id="loading" class="load_body d-none" style="width: 100%; height: 110vh; position: absolute; background-color: white; z-index: 100; margin-top: -2rem;">
<!-- <img src="{% static 'img/1484.gif' %}" class="gif" alt="load"> -->
<div class="gif">
<h2 style="color: black;">Daten Speichern und Senden...</h2>
</div>
</div>
<div id="loading_new" class="load_body d-none" style="width: 100%; height: 110vh; position: absolute; background-color: white; z-index: 100; margin-top: -2rem;">
<!-- <img src="{% static 'img/1484.gif' %}" class="gif" alt="load"> -->
<div class="gif">
<h2 style="color: black;">Daten abrufen...</h2>
</div>
</div>
<script>
</script>
<div class="container" style="max-width: 100%;">
<div class="top_line row justify-content-between">
<div class="title col-6 text-start dropdown">
@ -71,7 +51,11 @@
</ul>
</div>
</div>
<div class="load_body">
<div class="progress">
<div class="color"></div>
</div>
</div>
{% block content %}
{% endblock %}

@ -32,13 +32,8 @@
#header { padding-bottom: 2rem; }
select { width: 7rem;}
</style>
<script>
function loading_new(){
document.getElementById('loading_new').classList.remove("d-none")
}
</script>
<section id="header">
<h2 style="color: black; margin-top: 1rem; margin-bottom: -1rem;">{% if not actual %}<a href="/main/?date={{ past_date }}" onclick="loading_new()"><span class="col-lg-2 col-3 material-symbols-outlined">keyboard_arrow_left</span></a>{% else %}<span class="col-lg-2 col-3 material-symbols-outlined" style="color: lightgray;">keyboard_arrow_left</span>{% endif %}Woche vom {{ date }}<a href="/main/?date={{ next_date }}" onclick="loading_new()"><span class="col-lg-2 col-3 material-symbols-outlined">keyboard_arrow_right</span></a></h2>
<h2 style="color: black; margin-top: 1rem; margin-bottom: -1rem;">{% if not actual %}<a href="/main/?date={{ past_date }}"><span class="col-lg-2 col-3 material-symbols-outlined">keyboard_arrow_left</span></a>{% else %}<span class="col-lg-2 col-3 material-symbols-outlined" style="color: lightgray;">keyboard_arrow_left</span>{% endif %}Woche vom {{ date }}<a href="/main/?date={{ next_date }}"><span class="col-lg-2 col-3 material-symbols-outlined">keyboard_arrow_right</span></a></h2>
</section>
<!-- INFOS -->
@ -452,15 +447,8 @@
</table>
</div>
<p style="display: none;">!Technik_END!</p>
<script>
function sendform(){
document.getElementById('loading').classList.remove("d-none")
document.getElementById("formsend").click()
}
</script>
<div class="formcontrol" style="padding-bottom: 5rem;">
<button type="button" onclick="sendform()" class="btn btn-secondary" name="">Speichern</button>
<button type="submit" class="btn btn-secondary d-none" name="formsend" id="formsend">Speichern</button>
<div class="formcontrol">
<button type="submit" class="btn btn-secondary" name="formsend">Speichern</button>
</div>
</form>
</div>

@ -664,10 +664,10 @@
const req = new XMLHttpRequest();
req.open("GET", "http://mo.samuelzielke.de/api/", false);
req.send()
req.send();
myDATA = JSON.parse(req.response);
console.log(myDATA)
setData(myDATA)
</script>
</body>

Loading…
Cancel
Save

Powered by TurnKey Linux.