RaPla-Middleware-LinkGen/index.html
Patrick Müller bc9a43e648
All checks were successful
Jenkins Production Deployment
Fixing typos and adding disclaimer
2021-10-07 20:53:10 +02:00

66 lines
3.0 KiB
HTML

<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title>RaPla Middleware LinkGen</title>
<meta name="author" content="Patrick Müller">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" type="text/css" href="styles.css">
<script src="https://cdn.jsdelivr.net/npm/jquery@3.6.0/dist/jquery.min.js"></script>
<script src="scripts.js"></script>
</head>
<body>
<h1>RaPla Middleware Link Generator</h1>
<p>This website generates a link based on your preferences to use the RaPla Middleware which filters unwanted events.</p>
<p>Please only select a Wahl- / Profilmodul if you are in the 5./6. Semester and have any of these as otherwise,
the middleware might not work as expected.</p>
<p>Of course, I try my best to only exclude the events you want to have removed, but of course I can't guarantee
that this tool works exactly as expected all the time. Please don't only rely on this tool working perfectly.</p>
<p>If you have any questions or bugs, contact me via one of the options on <a href="https://www.p4ddy.com">p4ddy.com</a></p>
<br>
<form>
<label for="coursename">Choose your course</label>
<select id="coursename" name="coursename">
<option value="-1" selected>Course</option>
<option value="TINF19B1">TINF19B1</option>
<option value="TINF19B2">TINF19B2</option>
<option value="TINF19B3">TINF19B3</option>
<option value="TINF19B4">TINF19B4</option>
<option value="TINF19B5">TINF19B5</option>
<option value="TINF20B1">TINF20B1</option>
<option value="TINF20B2">TINF20B2</option>
<option value="TINF20B3">TINF20B3</option>
<option value="TINF20B4">TINF20B4</option>
<option value="TINF20B5">TINF20B5</option>
</select><br>
<label for="raplalink">If your course is not in the list, provide your RaPla Link here:</label>
<input name="raplalink" id="raplalink" type="text"><br>
<label for="hideBlockers">Hide Blockers</label>
<input name="hideBlockers" id="hideBlockers" type="checkbox"><br>
<label for="wahlmodul">Wahlmodul</label>
<select id="wahlmodul" name="wahlmodul">
<option value="" selected>Wahlmodul</option>
<option value="0">ERP-Systeme</option>
<option value="1">Ethik für Informatiker</option>
<option value="2">Evolutionäre Algorithmen</option>
<option value="3">Forensik</option>
<option value="4">Kryptographische Verfahren</option>
<option value="5">Robotik</option>
<option value="6">Web-Services</option>
</select><br>
<label for="profilmodul">Profilmodul</label>
<select id="profilmodul" name="profilmodul">
<option value="" selected>Profilmodul</option>
<option value="0">KI und BV</option>
<option value="1">Computergrafik</option>
<option value="2">KI und IS</option>
<option value="3">E-Business</option>
<option value="4">Netztechnik II</option>
</select><br>
<input type="button" id="submitBtn" value="Generate Link">
</form>
<p>Here is the link that you can use for importing RaPla into your iCloud etc. calendar (click to copy):</p>
<p id="full-link"></p>
</body>
</html>