-
Notifications
You must be signed in to change notification settings - Fork 0
/
separate_view.php
59 lines (50 loc) · 2.34 KB
/
separate_view.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
<?php include "partials/html_header.php"; ?>
<?php include "partials/navbar_view.php"; ?>
<?php
if (!isset($_SESSION['email'])) {
$error_login_first = "Du musst dich erst einloggen";
header("Location: login_view.php?login_first=$error_login_first");
die();
}
?>
<div class="jumbotron">
<h2><?php echo $_SESSION['session_name'] . " #" . $_SESSION['session_id'] ?></h2>
</div>
<!-- Formular zum auswählen einer Textdatei für die Userstorys -->
<div class="container mt-5">
<div class="alert alert-info" role="alert">Wähle eine Textdatei aus, um Themen für das Planning Poker zu laden. Jede Zeile der Textdatei steht für eine Userstory. <br>Jede Zeile muss mit einem Semikolon enden.</div>
<form action="separate.php" method="post" enctype="multipart/form-data">
<div class="input-group mb-3">
<div class="custom-file">
<input type="file" class="custom-file-input" id="fileToUpload" name="file_name" accept=".txt">
<label class="custom-file-label" for="fileToUpload">Datei auswählen</label>
</div>
<div class="input-group-append">
<input type="submit" name="fileToUpload" class="input-group-text" id="" value="Hochladen">
</div>
</div>
<?php if (isset($_GET["wrong_format"])) : ?>
<?php echo "</br><div class='alert alert-danger' role='alert'>" . htmlspecialchars($_GET["wrong_format"]) . "</div>" ?>
<?php endif; ?>
<?php if (isset($_GET['format'])) : ?>
<?php echo "<br><div class='alert alert-success' role='alert'>" . htmlspecialchars($_GET["format"]) . "</div>" ?>
<?php endif; ?>
</form>
<!-- Die übergebenen Zeilen der Textdatei werden hier ausgegeben -->
<?php if ($_GET["filename"]) :
$textfile = $_GET['aParam'];
?>
<hr>
<h3>Wähle eine User Story aus</h3>
<form action='poker.php' method='post'>
<ol>
<?php foreach ($textfile as $line): ?>
<?php if ($line != "") : ?>
<li><button type='submit' class="btn btn-link" name='task' value='<?php echo $line ?>'><?php echo $line ?></button></li>
<?php endif; ?>
<?php endforeach; ?>
</ol>
</form>
<?php endif; ?>
</div>
<?php include "partials/html_footer.php"; ?>