You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
41 lines
1.4 KiB
PHP
41 lines
1.4 KiB
PHP
<?php require_once ('php/flow.php'); ?>
|
|
|
|
<html>
|
|
<head>
|
|
<link href="css/style.css" rel="stylesheet">
|
|
<link href="css/dialog.css" rel="stylesheet">
|
|
<link href="css/flow.css" rel="stylesheet">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
<title></title>
|
|
</head>
|
|
<body class="autoscroll">
|
|
<!-- Content area of the page to avoid overflows -->
|
|
<div class="page-content">
|
|
<div class="flow-parent">
|
|
<?php echoFlowBody(); ?>
|
|
|
|
<div class="flow-element">
|
|
</div>
|
|
</div>
|
|
</div>
|
|
|
|
<!-- Dialog to ask user for ICS URL if not specified through GET -->
|
|
<div class="dialog-parent <?php hideMissingIcsDialog(); ?>">
|
|
<div class="dialog">
|
|
<div class="dialog-content">
|
|
Es wurde keine ICS URL als GET Parameter übergeben.<br>
|
|
<br>
|
|
<label>Anzuzeigende ICS URL:</label>
|
|
<input type="text" form="dialog-form" name="icsUrl" />
|
|
</div>
|
|
<div class="dialog-buttons">
|
|
<form id="dialog-form" method="get"></form>
|
|
<input type="submit" form="dialog-form" value="OK" />
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</body>
|
|
|
|
<script src="script/dialog.js"></script>
|
|
<script src="script/autoscroll.js"></script>
|
|
</html>
|