first commit
This commit is contained in:
337
templates/modern/praxisstelle/archiv.html
Executable file
337
templates/modern/praxisstelle/archiv.html
Executable file
@ -0,0 +1,337 @@
|
||||
{if $action == ''}
|
||||
<html>
|
||||
<head>
|
||||
<link type="text/css" rel="stylesheet" href="../templates/{$global_template}/css/styles_refill.css">
|
||||
<link rel="stylesheet" href="../jquery/jquery-ui.css">
|
||||
<link rel="stylesheet" href="../jquery/jquery.timepicker.min.css">
|
||||
<script src="../jquery/jquery-1.12.4.js"></script>
|
||||
<script src="../jquery/jquery-ui.js"></script>
|
||||
<script src="../jquery/globalize.js"></script>
|
||||
<script src="../jquery/globalize.culture.de-DE.js"></script>
|
||||
<script src="../jquery/jquery.mousewheel.js"></script>
|
||||
<script src="../jquery/jquery.timepicker.min.js"></script>
|
||||
<style type="text/css">
|
||||
.spinner {
|
||||
width: 112px;
|
||||
height: 15px;
|
||||
font-size: 12px !important;
|
||||
}
|
||||
</style>
|
||||
|
||||
|
||||
<style>
|
||||
.StandardTable thead th{
|
||||
background: lightgray;
|
||||
border: 1px solid #656565;
|
||||
font-size:12px;
|
||||
font-family:Arial;
|
||||
padding-top:5px;
|
||||
padding-bottom:5px;
|
||||
padding-left:5px;
|
||||
padding-right:5px;
|
||||
}
|
||||
textarea{
|
||||
border: 1px solid #888;
|
||||
height: 6.7em;
|
||||
width: 48.5em;
|
||||
}
|
||||
select{
|
||||
width:630px;
|
||||
}
|
||||
.row_0 {
|
||||
background-color: #FFFFFF;
|
||||
}
|
||||
.row_1 {
|
||||
background-color: #E1E8F1;
|
||||
}
|
||||
.ButtonAnzeigen {
|
||||
box-shadow: 0px 10px 14px -7px #3e7327;
|
||||
background:linear-gradient(to bottom, #77b55a 5%, #72b352 100%);
|
||||
background-color:#77b55a;
|
||||
border-radius:4px;
|
||||
border:1px solid #4b8f29;
|
||||
display:inline-block;
|
||||
cursor:pointer;
|
||||
color:#ffffff;
|
||||
font-family:Arial;
|
||||
font-size:13px;
|
||||
font-weight:bold;
|
||||
padding:6px 12px;
|
||||
text-decoration:none;
|
||||
text-shadow:0px 1px 0px #5b8a3c;
|
||||
}
|
||||
.ButtonAnzeigen:hover {
|
||||
background:linear-gradient(to bottom, #72b352 5%, #77b55a 100%);
|
||||
background-color:#72b352;
|
||||
}
|
||||
.ButtonAnzeigen:active {
|
||||
position:relative;
|
||||
top:1px;
|
||||
}
|
||||
.ButtonArchiv {
|
||||
box-shadow: 0px 10px 14px -7px #3e7327;
|
||||
background:linear-gradient(to bottom, #e4685d 5%, #eb675e 100%);
|
||||
background-color:#e4685d;
|
||||
border-radius:4px;
|
||||
border:1px solid #98051D;
|
||||
display:inline-block;
|
||||
cursor:pointer;
|
||||
color:#ffffff;
|
||||
font-family:Arial;
|
||||
font-size:13px;
|
||||
font-weight:bold;
|
||||
padding:6px 12px;
|
||||
text-decoration:none;
|
||||
text-shadow:0px 1px 0px #b23e35;
|
||||
}
|
||||
.ButtonArchiv:hover {
|
||||
background:linear-gradient(to bottom, #eb675e 5%, #e4685d 100%);
|
||||
background-color:#eb675e;
|
||||
}
|
||||
.ButtonArchiv:active {
|
||||
position:relative;
|
||||
top:1px;
|
||||
}
|
||||
|
||||
</style>
|
||||
</head>
|
||||
|
||||
<body>
|
||||
|
||||
<fieldset>
|
||||
<legend>
|
||||
<b>Bewerbungen</b>
|
||||
</legend>
|
||||
<br />
|
||||
<br />
|
||||
<table cellspacing="0" cellpadding="0" width="100%" border="0" class="StandardTable">
|
||||
<tr>
|
||||
<td width="10%">
|
||||
<b>Nr</b>
|
||||
</td>
|
||||
<td width="30%">
|
||||
<b>Name</b>
|
||||
</td>
|
||||
<td width="20%">
|
||||
<b>Testergebnis</b>
|
||||
</td>
|
||||
<td width="20%">
|
||||
<b>Bewerbungsdatum</b>
|
||||
</td>
|
||||
<td width="10%">
|
||||
<b>Auswahl</b>
|
||||
</td>
|
||||
<td width="10%">
|
||||
<b>Einblenden</b>
|
||||
</td>
|
||||
</tr>
|
||||
{section name=table_data1 loop=$table_data1}
|
||||
<tr>
|
||||
<td class="row_{$table_data1[table_data1].zaehler}" height='40'>
|
||||
{$smarty.section.table_data1.rownum}
|
||||
</td>
|
||||
<td class="row_{$table_data1[table_data1].zaehler}" height='40'>
|
||||
{$table_data1[table_data1].nachname}, {$table_data1[table_data1].vorname}
|
||||
</td>
|
||||
<td class="row_{$table_data1[table_data1].zaehler}" height='40'>
|
||||
{$table_data1[table_data1].testergebnis} / 130 Punkten
|
||||
</td>
|
||||
<td class="row_{$table_data1[table_data1].zaehler}" height='40'>
|
||||
{$table_data1[table_data1].datum_form}
|
||||
</td>
|
||||
<td class="row_{$table_data1[table_data1].zaehler}" height='40'>
|
||||
{if $table_data1[table_data1].showfiles == 1}
|
||||
<a href="?action=show&ka_id={$table_data1[table_data1].ka_id}" class="ButtonAnzeigen">Daten anzeigen</a>
|
||||
{/if}
|
||||
</td>
|
||||
<td class="row_{$table_data1[table_data1].zaehler}" height='40'>
|
||||
<a href="?action=archive&wu_id={$table_data1[table_data1].wu_id}" class="ButtonAnzeigen">Reaktivieren</a>
|
||||
</td>
|
||||
</tr>
|
||||
{/section}
|
||||
</table>
|
||||
<br />
|
||||
<br />
|
||||
</fieldset>
|
||||
<br />
|
||||
<br />
|
||||
</body>
|
||||
</html>
|
||||
{/if}
|
||||
|
||||
{if $action == 'show'}
|
||||
<html>
|
||||
<!DOCTYPE html>
|
||||
<html lang="en" class="no-js">
|
||||
<head>
|
||||
<title>Login der Ausbildungsstellen BPM (Bachelor of Arts - Public Management) der Hochschulen Ludwigsburg und Kehl.</title>
|
||||
<link type="text/css" rel="stylesheet" href="../templates/{$global_template}/css/styles_refill.css">
|
||||
<style>
|
||||
.desc{
|
||||
width:400px;
|
||||
}
|
||||
.StandardTable thead th{
|
||||
background: lightgray;
|
||||
border: 1px solid #656565;
|
||||
font-size:12px;
|
||||
font-family:Arial;
|
||||
padding-top:5px;
|
||||
padding-bottom:5px;
|
||||
padding-left:5px;
|
||||
padding-right:5px;
|
||||
}
|
||||
textarea{
|
||||
border: 1px solid #888;
|
||||
height: 6.7em;
|
||||
width: 48.5em;
|
||||
}
|
||||
select{
|
||||
width:630px;
|
||||
}
|
||||
.fieldset1 {
|
||||
border: 1px solid red;
|
||||
}
|
||||
.fieldset2 {
|
||||
border: ridge green;
|
||||
display: block;
|
||||
margin-left: 20px;
|
||||
margin-right: 20px;
|
||||
padding-top: 20px;
|
||||
padding-bottom: 20px;
|
||||
padding-left: 20px;
|
||||
padding-right: 20px;
|
||||
}
|
||||
.legend1 {
|
||||
display: block;
|
||||
padding-left: 20px;
|
||||
padding-right: 20px;
|
||||
border: none;
|
||||
font-size: 30px;
|
||||
}
|
||||
.button {
|
||||
font: bold 11px Arial;
|
||||
text-decoration: none;
|
||||
background-color: #EEEEEE;
|
||||
color: #333333;
|
||||
padding: 2px 6px 2px 6px;
|
||||
border-top: 1px solid #CCCCCC;
|
||||
border-right: 1px solid #333333;
|
||||
border-bottom: 1px solid #333333;
|
||||
border-left: 1px solid #CCCCCC;
|
||||
}
|
||||
.ButtonBack {
|
||||
box-shadow: 0px 10px 14px -7px #276873;
|
||||
background:linear-gradient(to bottom, #599bb3 5%, #408c99 100%);
|
||||
background-color:#599bb3;
|
||||
border-radius:8px;
|
||||
display:inline-block;
|
||||
cursor:pointer;
|
||||
color:#ffffff;
|
||||
font-family:Arial;
|
||||
font-size:20px;
|
||||
font-weight:bold;
|
||||
padding:13px 32px;
|
||||
text-decoration:none;
|
||||
text-shadow:0px 1px 0px #3d768a;
|
||||
}
|
||||
.ButtonBack:hover {
|
||||
background:linear-gradient(to bottom, #408c99 5%, #599bb3 100%);
|
||||
background-color:#408c99;
|
||||
}
|
||||
.ButtonBack:active {
|
||||
position:relative;
|
||||
top:1px;
|
||||
}
|
||||
|
||||
</style>
|
||||
<link rel="stylesheet" type="text/css" href="css/component.css" />
|
||||
<script type="text/javascript">
|
||||
(function(e,t,n){
|
||||
var r=e.querySelectorAll("html")[0];
|
||||
r.className=r.className.replace(/(^|\s)no-js(\s|$)/,"$1js$2")
|
||||
})
|
||||
(document,window,0);
|
||||
</script>
|
||||
</head>
|
||||
<body>
|
||||
<fieldset class="fieldset2">
|
||||
<legend class="legend1" align="center">
|
||||
<b>Dokumentenportal</b>
|
||||
</legend>
|
||||
{if $index_error == '1'}
|
||||
<table width="70%" class="errorTable" align="center">
|
||||
<tr>
|
||||
<td>
|
||||
<img src="../templates/{$global_template}/images/pflichtfelder/achtung_gross.gif">
|
||||
</td>
|
||||
<td><b>Achtung!</b><br>
|
||||
{$index_error_text}
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
<br />
|
||||
{/if}
|
||||
<fieldset class="fieldset1">
|
||||
<legend>
|
||||
<b>Persönliche Angaben</b>
|
||||
</legend>
|
||||
{$dok_anrede}<br>
|
||||
{$dok_vorname} {$dok_nachname}<br>
|
||||
{$dok_str}<br>
|
||||
{$dok_plz} {$dok_ort}<br>
|
||||
</fieldset>
|
||||
<br>
|
||||
<br>
|
||||
<fieldset>
|
||||
<legend>
|
||||
<b>Verfügbare Dokumente</b>
|
||||
</legend>
|
||||
<form action=?action=stelle method="POST" name="stelle">
|
||||
<table cellspacing="0" cellpadding="2" width="100%" border="1">
|
||||
<tr>
|
||||
<td width="50">
|
||||
<b>lfd.Nr.</b>
|
||||
</td>
|
||||
<td>
|
||||
<b>Datei</b>
|
||||
</td>
|
||||
<td>
|
||||
<b>Dokumentenbeschreibung</b>
|
||||
</td>
|
||||
<td>
|
||||
<b>Dokumentendatum</b>
|
||||
</td>
|
||||
<tr>
|
||||
{section name=table_data1 loop=$table_data1}
|
||||
{if $smarty.section.table_data1.rownum != ''}
|
||||
<tr>
|
||||
<td>
|
||||
{$smarty.section.table_data1.rownum}
|
||||
</td>
|
||||
<td>
|
||||
{if $table_data1[table_data1].exists == 1}
|
||||
<a href='downpdf.php?file={$table_data1[table_data1].basename_link}'>{$table_data1[table_data1].basename}</a>
|
||||
{else}
|
||||
{$table_data1[table_data1].basename}
|
||||
{/if}
|
||||
</td>
|
||||
<td>
|
||||
{$table_data1[table_data1].beschreibung}
|
||||
</td>
|
||||
<td>
|
||||
{$table_data1[table_data1].datum_form}
|
||||
</td>
|
||||
</tr>
|
||||
{/if}
|
||||
{/section}
|
||||
</table>
|
||||
</fieldset>
|
||||
<br />
|
||||
<br />
|
||||
<p align='center'>
|
||||
<a href="?" class="ButtonBack">zurück</a>
|
||||
</p>
|
||||
</fieldset>
|
||||
</body>
|
||||
</html>
|
||||
{/if}
|
823
templates/modern/praxisstelle/bewerbungen.html
Executable file
823
templates/modern/praxisstelle/bewerbungen.html
Executable file
@ -0,0 +1,823 @@
|
||||
{if $action == ''}
|
||||
<html>
|
||||
<head>
|
||||
<link type="text/css" rel="stylesheet" href="../templates/{$global_template}/css/styles_refill.css">
|
||||
<!-- Add jQuery library -->
|
||||
<script type="text/javascript" src="../fancybox-2.1.7/lib/jquery-1.10.2.min.js"></script>
|
||||
<!-- Add mousewheel plugin (this is optional) -->
|
||||
<script type="text/javascript" src="../fancybox-2.1.7/lib/jquery.mousewheel.pack.js?v=3.1.3"></script>
|
||||
<!-- Add fancyBox main JS and CSS files -->
|
||||
<script type="text/javascript" src="../fancybox-2.1.7/source/jquery.fancybox.pack.js?v=2.1.5"></script>
|
||||
<link rel="stylesheet" type="text/css" href="../fancybox-2.1.7/source/jquery.fancybox.css?v=2.1.5" media="screen" />
|
||||
<script type="text/javascript">
|
||||
$(document).ready(function() {
|
||||
$('.box').fancybox({
|
||||
'width' : '100%',
|
||||
'height' : '100%',
|
||||
'autoScale' : true,
|
||||
'transitionIn' : 'elastic',
|
||||
'transitionOut' : 'elastic',
|
||||
'type' : 'iframe',
|
||||
helpers: {
|
||||
overlay : {
|
||||
closeClick: true
|
||||
}
|
||||
},
|
||||
beforeClose: function () {
|
||||
location.href = "?";
|
||||
}
|
||||
});
|
||||
});
|
||||
</script>
|
||||
|
||||
<link rel="stylesheet" href="../jquery/jquery-ui.css">
|
||||
<link rel="stylesheet" href="../jquery/jquery.timepicker.min.css">
|
||||
<!-- Entfernt, da die Fancybox nicht mehr ging
|
||||
<script src="../jquery/jquery-1.12.4.js"></script>
|
||||
-->
|
||||
<script src="../jquery/jquery-ui.js"></script>
|
||||
<script src="../jquery/globalize.js"></script>
|
||||
<script src="../jquery/globalize.culture.de-DE.js"></script>
|
||||
<script src="../jquery/jquery.mousewheel.js"></script>
|
||||
<script src="../jquery/jquery.timepicker.min.js"></script>
|
||||
<style type="text/css">
|
||||
.spinner {
|
||||
width: 112px;
|
||||
height: 15px;
|
||||
font-size: 12px !important;
|
||||
}
|
||||
</style>
|
||||
|
||||
|
||||
<style>
|
||||
.StandardTable thead th{
|
||||
background: lightgray;
|
||||
border: 1px solid #656565;
|
||||
font-size:12px;
|
||||
font-family:Arial;
|
||||
padding-top:5px;
|
||||
padding-bottom:5px;
|
||||
padding-left:5px;
|
||||
padding-right:5px;
|
||||
}
|
||||
textarea{
|
||||
border: 1px solid #888;
|
||||
height: 6.7em;
|
||||
width: 48.5em;
|
||||
}
|
||||
select{
|
||||
width:630px;
|
||||
}
|
||||
.row_0 {
|
||||
background-color: #FFFFFF;
|
||||
}
|
||||
.row_1 {
|
||||
background-color: #E1E8F1;
|
||||
}
|
||||
.ButtonAnzeigen {
|
||||
box-shadow: 0px 10px 14px -7px #3e7327;
|
||||
background:linear-gradient(to bottom, #77b55a 5%, #72b352 100%);
|
||||
background-color:#77b55a;
|
||||
border-radius:4px;
|
||||
border:1px solid #4b8f29;
|
||||
display:inline-block;
|
||||
cursor:pointer;
|
||||
color:#ffffff;
|
||||
font-family:Arial;
|
||||
font-size:13px;
|
||||
font-weight:bold;
|
||||
padding:6px 12px;
|
||||
text-decoration:none;
|
||||
text-shadow:0px 1px 0px #5b8a3c;
|
||||
}
|
||||
.ButtonAnzeigen:hover {
|
||||
background:linear-gradient(to bottom, #72b352 5%, #77b55a 100%);
|
||||
background-color:#72b352;
|
||||
}
|
||||
.ButtonAnzeigen:active {
|
||||
position:relative;
|
||||
top:1px;
|
||||
}
|
||||
|
||||
|
||||
.ButtonCSV {
|
||||
box-shadow: 0px 10px 14px -7px #276873;
|
||||
background:linear-gradient(to bottom, #599bb3 5%, #408c99 100%);
|
||||
background-color:#599bb3;
|
||||
border-radius:4px;
|
||||
border:1px solid #29668f;
|
||||
display:inline-block;
|
||||
cursor:pointer;
|
||||
color:#ffffff;
|
||||
font-family:Arial;
|
||||
font-size:13px;
|
||||
font-weight:bold;
|
||||
padding:6px 12px;
|
||||
text-decoration:none;
|
||||
text-shadow:0px 1px 0px #3d768a;
|
||||
}
|
||||
.ButtonCSV:hover {
|
||||
background:linear-gradient(to bottom, #408c99 5%, #599bb3 100%);
|
||||
background-color:#408c99;
|
||||
}
|
||||
.ButtonCSV:active {
|
||||
position:relative;
|
||||
top:1px;
|
||||
}
|
||||
|
||||
|
||||
.ButtonArchiv {
|
||||
box-shadow: 0px 10px 14px -7px #3e7327;
|
||||
background:linear-gradient(to bottom, #e4685d 5%, #eb675e 100%);
|
||||
background-color:#e4685d;
|
||||
border-radius:4px;
|
||||
border:1px solid #98051D;
|
||||
display:inline-block;
|
||||
cursor:pointer;
|
||||
color:#ffffff;
|
||||
font-family:Arial;
|
||||
font-size:13px;
|
||||
font-weight:bold;
|
||||
padding:6px 12px;
|
||||
text-decoration:none;
|
||||
text-shadow:0px 1px 0px #b23e35;
|
||||
}
|
||||
.ButtonArchiv:hover {
|
||||
background:linear-gradient(to bottom, #eb675e 5%, #e4685d 100%);
|
||||
background-color:#eb675e;
|
||||
}
|
||||
.ButtonArchiv:active {
|
||||
position:relative;
|
||||
top:1px;
|
||||
}
|
||||
.btn_zusage {
|
||||
box-shadow: 0px 10px 14px -7px #7a8eb9;
|
||||
background:linear-gradient(to bottom, #637aad 5%, #5972a7 100%);
|
||||
background-color:#637aad;
|
||||
border-radius:4px;
|
||||
border:1px solid #314179;
|
||||
display:inline-block;
|
||||
cursor:pointer;
|
||||
color:#ffffff;
|
||||
font-family:Arial;
|
||||
font-size:13px;
|
||||
font-weight:bold;
|
||||
padding:6px 12px;
|
||||
text-decoration:none;
|
||||
text-shadow:0px 1px 0px #7a8eb9;
|
||||
}
|
||||
.btn_zusage:hover {
|
||||
background:linear-gradient(to bottom, #5972a7 5%, #637aad 100%);
|
||||
background-color:#5972a7;
|
||||
}
|
||||
.btn_zusage:active {
|
||||
position:relative;
|
||||
top:1px;
|
||||
}
|
||||
</style>
|
||||
</head>
|
||||
|
||||
<body>
|
||||
|
||||
<fieldset>
|
||||
<legend>
|
||||
<b>Bewerbungen</b>
|
||||
</legend>
|
||||
<br />
|
||||
<br />
|
||||
<table cellspacing="0" cellpadding="0" width="100%" border="0" class="StandardTable">
|
||||
<tr>
|
||||
<td width="10%">
|
||||
<b>Bew. Nr.</b>
|
||||
</td>
|
||||
<td width="20%">
|
||||
<b>Name</b>
|
||||
</td>
|
||||
<td width="10%">
|
||||
<b>Testergebnis</b>
|
||||
</td>
|
||||
<td width="10%">
|
||||
<b>Schwerbehinderung</b>
|
||||
</td>
|
||||
<td width="15%">
|
||||
<b>Bewerbungsdatum</b>
|
||||
</td>
|
||||
<td width="15%">
|
||||
<b>Zusage</b>
|
||||
</td>
|
||||
<td width="10%">
|
||||
<b>Auswahl</b>
|
||||
</td>
|
||||
<td width="10%">
|
||||
<b>Ausblenden</b>
|
||||
</td>
|
||||
</tr>
|
||||
{section name=table_data1 loop=$table_data1}
|
||||
<tr>
|
||||
<td class="row_{$table_data1[table_data1].zaehler}" height='40'>
|
||||
{$table_data1[table_data1].ka_id}
|
||||
<!--{$smarty.section.table_data1.rownum}-->
|
||||
</td>
|
||||
<td class="row_{$table_data1[table_data1].zaehler}" height='40'>
|
||||
{$table_data1[table_data1].nachname}, {$table_data1[table_data1].vorname} (<a href="mailto:{$table_data1[table_data1].mail}">{$table_data1[table_data1].mail}</a>)
|
||||
</td>
|
||||
<td class="row_{$table_data1[table_data1].zaehler}" height='40'>
|
||||
{$table_data1[table_data1].testergebnis} / 130 Punkten
|
||||
</td>
|
||||
<td class="row_{$table_data1[table_data1].zaehler}" height='40'>
|
||||
{if $table_data1[table_data1].behinderung == 'J'} Ja {else} Nein {/if}
|
||||
</td>
|
||||
<td class="row_{$table_data1[table_data1].zaehler}" height='40'>
|
||||
{$table_data1[table_data1].datum_form}
|
||||
</td>
|
||||
<td class="row_{$table_data1[table_data1].zaehler}" height='40'>
|
||||
{if $table_data1[table_data1].zusage == 'J'}
|
||||
Zugesagt am {$table_data1[table_data1].zusage_dat_form}
|
||||
{elseif $table_data1[table_data1].anderezusage == 'J'}
|
||||
Bitte kontaktieren Sie den Bewerber, er wurde bereits von einer anderen Stelle ausgewählt.
|
||||
{else}
|
||||
<a class="aformlink box btn_zusage" title="Mitteilung über Zusage" href="?action=zusage1&ka_id={$table_data1[table_data1].ka_id}">Mitteilung über Zusage</a>
|
||||
{/if}
|
||||
</td>
|
||||
<td class="row_{$table_data1[table_data1].zaehler}" height='40'>
|
||||
{if $table_data1[table_data1].showfiles == 1}
|
||||
<a href="?action=show&ka_id={$table_data1[table_data1].ka_id}" class="ButtonAnzeigen">Daten anzeigen</a>
|
||||
{/if}
|
||||
</td>
|
||||
<td class="row_{$table_data1[table_data1].zaehler}" height='40'>
|
||||
<a href="?action=archive&wu_id={$table_data1[table_data1].wu_id}" class="ButtonArchiv">Archivieren</a>
|
||||
</td>
|
||||
</tr>
|
||||
{/section}
|
||||
</table>
|
||||
<br />
|
||||
<p align='center'><a href="export_bewerber.php" class="ButtonCSV">CSV Export</a></p>
|
||||
</fieldset>
|
||||
<br />
|
||||
<br />
|
||||
</body>
|
||||
</html>
|
||||
{/if}
|
||||
|
||||
{if $action == 'show'}
|
||||
<html>
|
||||
<!DOCTYPE html>
|
||||
<html lang="en" class="no-js">
|
||||
<head>
|
||||
<title>Login der Ausbildungsstellen BPM (Bachelor of Arts - Public Management) der Hochschulen Ludwigsburg und Kehl.</title>
|
||||
<link type="text/css" rel="stylesheet" href="../templates/{$global_template}/css/styles_refill.css">
|
||||
<style>
|
||||
.desc{
|
||||
width:400px;
|
||||
}
|
||||
.StandardTable thead th{
|
||||
background: lightgray;
|
||||
border: 1px solid #656565;
|
||||
font-size:12px;
|
||||
font-family:Arial;
|
||||
padding-top:5px;
|
||||
padding-bottom:5px;
|
||||
padding-left:5px;
|
||||
padding-right:5px;
|
||||
}
|
||||
textarea{
|
||||
border: 1px solid #888;
|
||||
height: 6.7em;
|
||||
width: 48.5em;
|
||||
}
|
||||
select{
|
||||
width:630px;
|
||||
}
|
||||
.fieldset1 {
|
||||
border: 1px solid red;
|
||||
}
|
||||
.fieldset2 {
|
||||
border: ridge green;
|
||||
display: block;
|
||||
margin-left: 20px;
|
||||
margin-right: 20px;
|
||||
padding-top: 20px;
|
||||
padding-bottom: 20px;
|
||||
padding-left: 20px;
|
||||
padding-right: 20px;
|
||||
}
|
||||
.legend1 {
|
||||
display: block;
|
||||
padding-left: 20px;
|
||||
padding-right: 20px;
|
||||
border: none;
|
||||
font-size: 30px;
|
||||
}
|
||||
.button {
|
||||
font: bold 11px Arial;
|
||||
text-decoration: none;
|
||||
background-color: #EEEEEE;
|
||||
color: #333333;
|
||||
padding: 2px 6px 2px 6px;
|
||||
border-top: 1px solid #CCCCCC;
|
||||
border-right: 1px solid #333333;
|
||||
border-bottom: 1px solid #333333;
|
||||
border-left: 1px solid #CCCCCC;
|
||||
}
|
||||
.ButtonBack {
|
||||
box-shadow: 0px 10px 14px -7px #276873;
|
||||
background:linear-gradient(to bottom, #599bb3 5%, #408c99 100%);
|
||||
background-color:#599bb3;
|
||||
border-radius:8px;
|
||||
display:inline-block;
|
||||
cursor:pointer;
|
||||
color:#ffffff;
|
||||
font-family:Arial;
|
||||
font-size:20px;
|
||||
font-weight:bold;
|
||||
padding:13px 32px;
|
||||
text-decoration:none;
|
||||
text-shadow:0px 1px 0px #3d768a;
|
||||
}
|
||||
.ButtonBack:hover {
|
||||
background:linear-gradient(to bottom, #408c99 5%, #599bb3 100%);
|
||||
background-color:#408c99;
|
||||
}
|
||||
.ButtonBack:active {
|
||||
position:relative;
|
||||
top:1px;
|
||||
}
|
||||
|
||||
</style>
|
||||
<link rel="stylesheet" type="text/css" href="css/component.css" />
|
||||
<script type="text/javascript">
|
||||
(function(e,t,n){
|
||||
var r=e.querySelectorAll("html")[0];
|
||||
r.className=r.className.replace(/(^|\s)no-js(\s|$)/,"$1js$2")
|
||||
})
|
||||
(document,window,0);
|
||||
</script>
|
||||
</head>
|
||||
<body>
|
||||
<fieldset class="fieldset2">
|
||||
<legend class="legend1" align="center">
|
||||
<b>Dokumentenportal</b>
|
||||
</legend>
|
||||
{if $index_error == '1'}
|
||||
<table width="70%" class="errorTable" align="center">
|
||||
<tr>
|
||||
<td>
|
||||
<img src="../templates/{$global_template}/images/pflichtfelder/achtung_gross.gif">
|
||||
</td>
|
||||
<td><b>Achtung!</b><br>
|
||||
{$index_error_text}
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
<br />
|
||||
{/if}
|
||||
<fieldset class="fieldset1">
|
||||
<legend>
|
||||
<b>Persönliche Angaben</b>
|
||||
</legend>
|
||||
{$dok_anrede}<br>
|
||||
{$dok_vorname} {$dok_nachname}<br>
|
||||
{$dok_str}<br>
|
||||
{$dok_plz} {$dok_ort}<br>
|
||||
<a href="mailto:{$dok_mail}">{$dok_mail}</a>
|
||||
</fieldset>
|
||||
<br>
|
||||
<br>
|
||||
<fieldset>
|
||||
<legend>
|
||||
<b>Verfügbare Dokumente</b>
|
||||
</legend>
|
||||
<form action=?action=stelle method="POST" name="stelle">
|
||||
<table cellspacing="0" cellpadding="2" width="100%" border="1">
|
||||
<tr>
|
||||
<td width="50">
|
||||
<b>Dok. Nr.</b>
|
||||
</td>
|
||||
<td>
|
||||
<b>Datei</b>
|
||||
</td>
|
||||
<td>
|
||||
<b>Dokumentenbeschreibung</b>
|
||||
</td>
|
||||
<td>
|
||||
<b>Dokumentendatum</b>
|
||||
</td>
|
||||
<tr>
|
||||
{section name=table_data1 loop=$table_data1}
|
||||
{if $smarty.section.table_data1.rownum != ''}
|
||||
<tr>
|
||||
<td>
|
||||
{$table_data1[table_data1].up_id}
|
||||
<!--{$smarty.section.table_data1.rownum}-->
|
||||
</td>
|
||||
<td>
|
||||
{if $table_data1[table_data1].exists == 1}
|
||||
<a href='downpdf.php?file={$table_data1[table_data1].basename_link}'>{$table_data1[table_data1].basename}</a>
|
||||
{else}
|
||||
{$table_data1[table_data1].basename}
|
||||
{/if}
|
||||
</td>
|
||||
<td>
|
||||
{$table_data1[table_data1].beschreibung}
|
||||
</td>
|
||||
<td>
|
||||
{$table_data1[table_data1].datum_form}
|
||||
</td>
|
||||
</tr>
|
||||
{/if}
|
||||
{/section}
|
||||
</table>
|
||||
</fieldset>
|
||||
<br />
|
||||
<br />
|
||||
<p align='center'>
|
||||
<a href="?" class="ButtonBack">zurück</a>
|
||||
</p>
|
||||
</fieldset>
|
||||
</body>
|
||||
</html>
|
||||
{/if}
|
||||
|
||||
{if $action == 'zusage1'}
|
||||
<html>
|
||||
<!DOCTYPE html>
|
||||
<html lang="en" class="no-js">
|
||||
<head>
|
||||
<title>Zusageassistent</title>
|
||||
<link type="text/css" rel="stylesheet" href="../templates/{$global_template}/css/styles_refill.css">
|
||||
<style>
|
||||
.desc{
|
||||
width:400px;
|
||||
}
|
||||
.StandardTable thead th{
|
||||
background: lightgray;
|
||||
border: 1px solid #656565;
|
||||
font-size:12px;
|
||||
font-family:Arial;
|
||||
padding-top:5px;
|
||||
padding-bottom:5px;
|
||||
padding-left:5px;
|
||||
padding-right:5px;
|
||||
}
|
||||
textarea{
|
||||
border: 1px solid #888;
|
||||
height: 6.7em;
|
||||
width: 48.5em;
|
||||
}
|
||||
select{
|
||||
width:630px;
|
||||
}
|
||||
.fieldset1 {
|
||||
border: 1px solid red;
|
||||
}
|
||||
.fieldset2 {
|
||||
border: ridge green;
|
||||
display: block;
|
||||
margin-left: 20px;
|
||||
margin-right: 20px;
|
||||
padding-top: 20px;
|
||||
padding-bottom: 20px;
|
||||
padding-left: 20px;
|
||||
padding-right: 20px;
|
||||
}
|
||||
.legend1 {
|
||||
display: block;
|
||||
padding-left: 20px;
|
||||
padding-right: 20px;
|
||||
border: none;
|
||||
font-size: 30px;
|
||||
}
|
||||
.button {
|
||||
font: bold 11px Arial;
|
||||
text-decoration: none;
|
||||
background-color: #EEEEEE;
|
||||
color: #333333;
|
||||
padding: 2px 6px 2px 6px;
|
||||
border-top: 1px solid #CCCCCC;
|
||||
border-right: 1px solid #333333;
|
||||
border-bottom: 1px solid #333333;
|
||||
border-left: 1px solid #CCCCCC;
|
||||
}
|
||||
.ButtonBack {
|
||||
box-shadow: 0px 10px 14px -7px #276873;
|
||||
background:linear-gradient(to bottom, #599bb3 5%, #408c99 100%);
|
||||
background-color:#599bb3;
|
||||
border-radius:8px;
|
||||
display:inline-block;
|
||||
cursor:pointer;
|
||||
color:#ffffff;
|
||||
font-family:Arial;
|
||||
font-size:20px;
|
||||
font-weight:bold;
|
||||
padding:13px 32px;
|
||||
text-decoration:none;
|
||||
text-shadow:0px 1px 0px #3d768a;
|
||||
}
|
||||
.ButtonBack:hover {
|
||||
background:linear-gradient(to bottom, #408c99 5%, #599bb3 100%);
|
||||
background-color:#408c99;
|
||||
}
|
||||
.ButtonBack:active {
|
||||
position:relative;
|
||||
top:1px;
|
||||
}
|
||||
.btn_ja {
|
||||
background-color:#94c2a0;
|
||||
border-radius:28px;
|
||||
border:1px solid #18ab29;
|
||||
display:inline-block;
|
||||
cursor:pointer;
|
||||
color:#ffffff;
|
||||
font-family:Arial;
|
||||
font-size:17px;
|
||||
padding:16px 31px;
|
||||
text-decoration:none;
|
||||
text-shadow:0px 1px 0px #2f6627;
|
||||
}
|
||||
.btn_ja:hover {
|
||||
background-color:#5cbf2a;
|
||||
}
|
||||
.btn_ja:active {
|
||||
position:relative;
|
||||
top:1px;
|
||||
}
|
||||
|
||||
.btn_nein {
|
||||
box-shadow: 0px 0px 0px 0px #c73636;
|
||||
background-color:#ff8585;
|
||||
border-radius:28px;
|
||||
border:1px solid #d44444;
|
||||
display:inline-block;
|
||||
cursor:pointer;
|
||||
color:#ffffff;
|
||||
font-family:Arial;
|
||||
font-size:17px;
|
||||
padding:16px 31px;
|
||||
text-decoration:none;
|
||||
text-shadow:0px 1px 0px #f02222;
|
||||
}
|
||||
.btn_nein:hover {
|
||||
background-color:#f51818;
|
||||
}
|
||||
.btn_nein:active {
|
||||
position:relative;
|
||||
top:1px;
|
||||
}
|
||||
</style>
|
||||
<link rel="stylesheet" type="text/css" href="css/component.css" />
|
||||
<script type="text/javascript">
|
||||
(function(e,t,n){
|
||||
var r=e.querySelectorAll("html")[0];
|
||||
r.className=r.className.replace(/(^|\s)no-js(\s|$)/,"$1js$2")
|
||||
})
|
||||
(document,window,0);
|
||||
</script>
|
||||
</head>
|
||||
<body>
|
||||
<fieldset class="fieldset2">
|
||||
<legend class="legend1" align="center">
|
||||
<b>Zusageassistent</b>
|
||||
</legend>
|
||||
{if $index_error == '1'}
|
||||
<table width="70%" class="errorTable" align="center">
|
||||
<tr>
|
||||
<td>
|
||||
<img src="../templates/{$global_template}/images/pflichtfelder/achtung_gross.gif">
|
||||
</td>
|
||||
<td><b>Achtung!</b><br>
|
||||
{$index_error_text}
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
<br />
|
||||
{/if}
|
||||
<h1><p align="center">{$text_nachfrage}</p></h1>
|
||||
<br>
|
||||
<br>
|
||||
<form action=?action=stelle method="POST" name="stelle">
|
||||
<table cellspacing="0" cellpadding="2" width="100%" border="0">
|
||||
<tr>
|
||||
<td width="25%" align="center">
|
||||
|
||||
</td>
|
||||
<td width="25%" align="center">
|
||||
<a href="?action=zusage2&ka_id={$ka_id}" class="btn_ja">Ja</a>
|
||||
</td>
|
||||
<td width="25%" align="center">
|
||||
<a href="?action=zusage_holen&ka_id={$ka_id}" class="btn_nein">Nein</a>
|
||||
</td>
|
||||
<td width="25%" align="center">
|
||||
|
||||
</td>
|
||||
<tr>
|
||||
</table>
|
||||
<br />
|
||||
<br />
|
||||
</fieldset>
|
||||
</body>
|
||||
</html>
|
||||
{/if}
|
||||
|
||||
{if $action == 'zusage_holen'}
|
||||
<html>
|
||||
<head>
|
||||
<link type="text/css" rel="stylesheet" href="../templates/{$global_template}/css/styles_refill.css">
|
||||
<script type='text/javascript' src='../ckeditor5/build/ckeditor.js'></script>
|
||||
<style>
|
||||
.ck-editor__editable {
|
||||
min-height: 300px;
|
||||
}
|
||||
p {
|
||||
margin: 0;
|
||||
}
|
||||
</style>
|
||||
</head>
|
||||
<body>
|
||||
<fieldset>
|
||||
<legend>
|
||||
<b>Zusage einholen</b>
|
||||
</legend>
|
||||
<br />
|
||||
<br />
|
||||
<form action="?action=mailsenden" method='post' name='mailsenden'>
|
||||
<table width="100%" border="1" cellspacing="0" cellpadding="0" rules="all">
|
||||
<tr>
|
||||
<td width="200" height="40" style="padding-left:5px">
|
||||
Praxisstelle:
|
||||
</td>
|
||||
<td style="padding-left:5px">
|
||||
{$dst_bez} <{$dst_mail}>
|
||||
</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td height="40" style="padding-left:5px">
|
||||
Empfänger:
|
||||
</td>
|
||||
<td style="padding-left:5px">
|
||||
{$bew_name} <{$bew_mail}>
|
||||
</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td height="40" style="padding-left:5px">
|
||||
Betreff:
|
||||
</td>
|
||||
<td style="padding-left:5px">
|
||||
<input type="text" id="betreff" name="betreff" value="{$mail_betreff}" size="80">
|
||||
</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td height="40" style="padding-left:5px">
|
||||
Mailtext:
|
||||
</td>
|
||||
<td style="padding-left:5px">
|
||||
<textarea id='text' name='text'>{$mail_text}</textarea>
|
||||
{literal}
|
||||
<script>ClassicEditor
|
||||
.create( document.querySelector( '#text' ), {
|
||||
toolbar: {
|
||||
items: [
|
||||
'heading',
|
||||
'|',
|
||||
'fontSize',
|
||||
'fontFamily',
|
||||
'fontBackgroundColor',
|
||||
'fontColor',
|
||||
'|',
|
||||
'bold',
|
||||
'italic',
|
||||
'link',
|
||||
'bulletedList',
|
||||
'numberedList',
|
||||
'|',
|
||||
'alignment',
|
||||
'indent',
|
||||
'outdent',
|
||||
'|',
|
||||
'imageUpload',
|
||||
'blockQuote',
|
||||
'insertTable',
|
||||
'mediaEmbed',
|
||||
'undo',
|
||||
'redo'
|
||||
]
|
||||
},
|
||||
language: 'de',
|
||||
image: {
|
||||
toolbar: [
|
||||
'imageTextAlternative',
|
||||
'imageStyle:full',
|
||||
'imageStyle:side'
|
||||
]
|
||||
},
|
||||
table: {
|
||||
contentToolbar: [
|
||||
'tableColumn',
|
||||
'tableRow',
|
||||
'mergeTableCells',
|
||||
'tableCellProperties',
|
||||
'tableProperties'
|
||||
]
|
||||
},
|
||||
licenseKey: '',
|
||||
} )
|
||||
.then( editor => {
|
||||
window.editor = editor;
|
||||
} )
|
||||
.catch( error => {
|
||||
console.error( error );
|
||||
} );
|
||||
</script>
|
||||
{/literal}
|
||||
<input type="hidden" name="bew_ka_id" id="bew_ka_id" size="101" value="{$bew_ka_id}">
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
</p>
|
||||
<br />
|
||||
<br />
|
||||
<p align='center'>
|
||||
<input type='submit' name='senden' value="Mail senden">
|
||||
</p>
|
||||
<br />
|
||||
</form>
|
||||
</fieldset>
|
||||
<br />
|
||||
<br />
|
||||
<br />
|
||||
<br />
|
||||
</body>
|
||||
</html>
|
||||
{/if}
|
||||
{if $action == 'mailsenden'}
|
||||
<html>
|
||||
<head>
|
||||
<link type="text/css" rel="stylesheet" href="../templates/{$global_template}/css/styles_refill.css">
|
||||
</head>
|
||||
<body>
|
||||
<fieldset>
|
||||
<legend>
|
||||
<b>Ergebnis</b>
|
||||
</legend>
|
||||
<br />
|
||||
<br />
|
||||
{$mail_senderg}
|
||||
<br>
|
||||
<br>
|
||||
Sie können das Fenster nun schließen.
|
||||
</fieldset>
|
||||
<br />
|
||||
<br />
|
||||
<br />
|
||||
<br />
|
||||
</body>
|
||||
</html>
|
||||
{/if}
|
||||
{if $action == 'zusage2'}
|
||||
<html>
|
||||
<head>
|
||||
<link type="text/css" rel="stylesheet" href="../templates/{$global_template}/css/styles_refill.css">
|
||||
</head>
|
||||
<body>
|
||||
<fieldset>
|
||||
<legend>
|
||||
<b>Ergebnis</b>
|
||||
</legend>
|
||||
<br />
|
||||
<br />
|
||||
<table width="100%" border="1" cellspacing="0" cellpadding="2" rules="all">
|
||||
<tr>
|
||||
<td>
|
||||
Status Praxisstelle:
|
||||
</td>
|
||||
<td>
|
||||
{$mail_senderg_prx}
|
||||
</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>
|
||||
Status Bewerber:
|
||||
</td>
|
||||
<td>
|
||||
{$mail_senderg_bew}
|
||||
</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>
|
||||
Status Hochschule:
|
||||
</td>
|
||||
<td>
|
||||
{$mail_senderg_hs}
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
<br>
|
||||
<br>
|
||||
Sie können das Fenster nun schließen.
|
||||
</fieldset>
|
||||
<br />
|
||||
<br />
|
||||
<br />
|
||||
<br />
|
||||
</body>
|
||||
</html>
|
||||
{/if}
|
823
templates/modern/praxisstelle/bewerbungen.html_mit_zusage
Executable file
823
templates/modern/praxisstelle/bewerbungen.html_mit_zusage
Executable file
@ -0,0 +1,823 @@
|
||||
{if $action == ''}
|
||||
<html>
|
||||
<head>
|
||||
<link type="text/css" rel="stylesheet" href="../templates/{$global_template}/css/styles_refill.css">
|
||||
<!-- Add jQuery library -->
|
||||
<script type="text/javascript" src="../fancybox-2.1.7/lib/jquery-1.10.2.min.js"></script>
|
||||
<!-- Add mousewheel plugin (this is optional) -->
|
||||
<script type="text/javascript" src="../fancybox-2.1.7/lib/jquery.mousewheel.pack.js?v=3.1.3"></script>
|
||||
<!-- Add fancyBox main JS and CSS files -->
|
||||
<script type="text/javascript" src="../fancybox-2.1.7/source/jquery.fancybox.pack.js?v=2.1.5"></script>
|
||||
<link rel="stylesheet" type="text/css" href="../fancybox-2.1.7/source/jquery.fancybox.css?v=2.1.5" media="screen" />
|
||||
<script type="text/javascript">
|
||||
$(document).ready(function() {
|
||||
$('.box').fancybox({
|
||||
'width' : '100%',
|
||||
'height' : '100%',
|
||||
'autoScale' : true,
|
||||
'transitionIn' : 'elastic',
|
||||
'transitionOut' : 'elastic',
|
||||
'type' : 'iframe',
|
||||
helpers: {
|
||||
overlay : {
|
||||
closeClick: true
|
||||
}
|
||||
},
|
||||
beforeClose: function () {
|
||||
location.href = "?";
|
||||
}
|
||||
});
|
||||
});
|
||||
</script>
|
||||
|
||||
<link rel="stylesheet" href="../jquery/jquery-ui.css">
|
||||
<link rel="stylesheet" href="../jquery/jquery.timepicker.min.css">
|
||||
<!-- Entfernt, da die Fancybox nicht mehr ging
|
||||
<script src="../jquery/jquery-1.12.4.js"></script>
|
||||
-->
|
||||
<script src="../jquery/jquery-ui.js"></script>
|
||||
<script src="../jquery/globalize.js"></script>
|
||||
<script src="../jquery/globalize.culture.de-DE.js"></script>
|
||||
<script src="../jquery/jquery.mousewheel.js"></script>
|
||||
<script src="../jquery/jquery.timepicker.min.js"></script>
|
||||
<style type="text/css">
|
||||
.spinner {
|
||||
width: 112px;
|
||||
height: 15px;
|
||||
font-size: 12px !important;
|
||||
}
|
||||
</style>
|
||||
|
||||
|
||||
<style>
|
||||
.StandardTable thead th{
|
||||
background: lightgray;
|
||||
border: 1px solid #656565;
|
||||
font-size:12px;
|
||||
font-family:Arial;
|
||||
padding-top:5px;
|
||||
padding-bottom:5px;
|
||||
padding-left:5px;
|
||||
padding-right:5px;
|
||||
}
|
||||
textarea{
|
||||
border: 1px solid #888;
|
||||
height: 6.7em;
|
||||
width: 48.5em;
|
||||
}
|
||||
select{
|
||||
width:630px;
|
||||
}
|
||||
.row_0 {
|
||||
background-color: #FFFFFF;
|
||||
}
|
||||
.row_1 {
|
||||
background-color: #E1E8F1;
|
||||
}
|
||||
.ButtonAnzeigen {
|
||||
box-shadow: 0px 10px 14px -7px #3e7327;
|
||||
background:linear-gradient(to bottom, #77b55a 5%, #72b352 100%);
|
||||
background-color:#77b55a;
|
||||
border-radius:4px;
|
||||
border:1px solid #4b8f29;
|
||||
display:inline-block;
|
||||
cursor:pointer;
|
||||
color:#ffffff;
|
||||
font-family:Arial;
|
||||
font-size:13px;
|
||||
font-weight:bold;
|
||||
padding:6px 12px;
|
||||
text-decoration:none;
|
||||
text-shadow:0px 1px 0px #5b8a3c;
|
||||
}
|
||||
.ButtonAnzeigen:hover {
|
||||
background:linear-gradient(to bottom, #72b352 5%, #77b55a 100%);
|
||||
background-color:#72b352;
|
||||
}
|
||||
.ButtonAnzeigen:active {
|
||||
position:relative;
|
||||
top:1px;
|
||||
}
|
||||
|
||||
|
||||
.ButtonCSV {
|
||||
box-shadow: 0px 10px 14px -7px #276873;
|
||||
background:linear-gradient(to bottom, #599bb3 5%, #408c99 100%);
|
||||
background-color:#599bb3;
|
||||
border-radius:4px;
|
||||
border:1px solid #29668f;
|
||||
display:inline-block;
|
||||
cursor:pointer;
|
||||
color:#ffffff;
|
||||
font-family:Arial;
|
||||
font-size:13px;
|
||||
font-weight:bold;
|
||||
padding:6px 12px;
|
||||
text-decoration:none;
|
||||
text-shadow:0px 1px 0px #3d768a;
|
||||
}
|
||||
.ButtonCSV:hover {
|
||||
background:linear-gradient(to bottom, #408c99 5%, #599bb3 100%);
|
||||
background-color:#408c99;
|
||||
}
|
||||
.ButtonCSV:active {
|
||||
position:relative;
|
||||
top:1px;
|
||||
}
|
||||
|
||||
|
||||
.ButtonArchiv {
|
||||
box-shadow: 0px 10px 14px -7px #3e7327;
|
||||
background:linear-gradient(to bottom, #e4685d 5%, #eb675e 100%);
|
||||
background-color:#e4685d;
|
||||
border-radius:4px;
|
||||
border:1px solid #98051D;
|
||||
display:inline-block;
|
||||
cursor:pointer;
|
||||
color:#ffffff;
|
||||
font-family:Arial;
|
||||
font-size:13px;
|
||||
font-weight:bold;
|
||||
padding:6px 12px;
|
||||
text-decoration:none;
|
||||
text-shadow:0px 1px 0px #b23e35;
|
||||
}
|
||||
.ButtonArchiv:hover {
|
||||
background:linear-gradient(to bottom, #eb675e 5%, #e4685d 100%);
|
||||
background-color:#eb675e;
|
||||
}
|
||||
.ButtonArchiv:active {
|
||||
position:relative;
|
||||
top:1px;
|
||||
}
|
||||
.btn_zusage {
|
||||
box-shadow: 0px 10px 14px -7px #7a8eb9;
|
||||
background:linear-gradient(to bottom, #637aad 5%, #5972a7 100%);
|
||||
background-color:#637aad;
|
||||
border-radius:4px;
|
||||
border:1px solid #314179;
|
||||
display:inline-block;
|
||||
cursor:pointer;
|
||||
color:#ffffff;
|
||||
font-family:Arial;
|
||||
font-size:13px;
|
||||
font-weight:bold;
|
||||
padding:6px 12px;
|
||||
text-decoration:none;
|
||||
text-shadow:0px 1px 0px #7a8eb9;
|
||||
}
|
||||
.btn_zusage:hover {
|
||||
background:linear-gradient(to bottom, #5972a7 5%, #637aad 100%);
|
||||
background-color:#5972a7;
|
||||
}
|
||||
.btn_zusage:active {
|
||||
position:relative;
|
||||
top:1px;
|
||||
}
|
||||
</style>
|
||||
</head>
|
||||
|
||||
<body>
|
||||
|
||||
<fieldset>
|
||||
<legend>
|
||||
<b>Bewerbungen</b>
|
||||
</legend>
|
||||
<br />
|
||||
<br />
|
||||
<table cellspacing="0" cellpadding="0" width="100%" border="0" class="StandardTable">
|
||||
<tr>
|
||||
<td width="10%">
|
||||
<b>Bew. Nr.</b>
|
||||
</td>
|
||||
<td width="20%">
|
||||
<b>Name</b>
|
||||
</td>
|
||||
<td width="10%">
|
||||
<b>Testergebnis</b>
|
||||
</td>
|
||||
<td width="10%">
|
||||
<b>Schwerbehinderung</b>
|
||||
</td>
|
||||
<td width="15%">
|
||||
<b>Bewerbungsdatum</b>
|
||||
</td>
|
||||
<td width="15%">
|
||||
<b>Zusage</b>
|
||||
</td>
|
||||
<td width="10%">
|
||||
<b>Auswahl</b>
|
||||
</td>
|
||||
<td width="10%">
|
||||
<b>Ausblenden</b>
|
||||
</td>
|
||||
</tr>
|
||||
{section name=table_data1 loop=$table_data1}
|
||||
<tr>
|
||||
<td class="row_{$table_data1[table_data1].zaehler}" height='40'>
|
||||
{$table_data1[table_data1].ka_id}
|
||||
<!--{$smarty.section.table_data1.rownum}-->
|
||||
</td>
|
||||
<td class="row_{$table_data1[table_data1].zaehler}" height='40'>
|
||||
{$table_data1[table_data1].nachname}, {$table_data1[table_data1].vorname} (<a href="mailto:{$table_data1[table_data1].mail}">{$table_data1[table_data1].mail}</a>)
|
||||
</td>
|
||||
<td class="row_{$table_data1[table_data1].zaehler}" height='40'>
|
||||
{$table_data1[table_data1].testergebnis} / 130 Punkten
|
||||
</td>
|
||||
<td class="row_{$table_data1[table_data1].zaehler}" height='40'>
|
||||
{if $table_data1[table_data1].behinderung == 'J'} Ja {else} Nein {/if}
|
||||
</td>
|
||||
<td class="row_{$table_data1[table_data1].zaehler}" height='40'>
|
||||
{$table_data1[table_data1].datum_form}
|
||||
</td>
|
||||
<td class="row_{$table_data1[table_data1].zaehler}" height='40'>
|
||||
{if $table_data1[table_data1].zusage == 'J'}
|
||||
Zugesagt am {$table_data1[table_data1].zusage_dat_form}
|
||||
{elseif $table_data1[table_data1].anderezusage == 'J'}
|
||||
Der Bewerber wurde bereits von einer anderen Ausbildungsstele ausgewählt -> Bitte setzen Sie sich mit dem Bewerber in Verbindung.
|
||||
{else}
|
||||
<a class="aformlink box btn_zusage" title="Mitteilung über Zusage" href="?action=zusage1&ka_id={$table_data1[table_data1].ka_id}">Mitteilung über Zusage</a>
|
||||
{/if}
|
||||
</td>
|
||||
<td class="row_{$table_data1[table_data1].zaehler}" height='40'>
|
||||
{if $table_data1[table_data1].showfiles == 1}
|
||||
<a href="?action=show&ka_id={$table_data1[table_data1].ka_id}" class="ButtonAnzeigen">Daten anzeigen</a>
|
||||
{/if}
|
||||
</td>
|
||||
<td class="row_{$table_data1[table_data1].zaehler}" height='40'>
|
||||
<a href="?action=archive&wu_id={$table_data1[table_data1].wu_id}" class="ButtonArchiv">Archivieren</a>
|
||||
</td>
|
||||
</tr>
|
||||
{/section}
|
||||
</table>
|
||||
<br />
|
||||
<p align='center'><a href="export_bewerber.php" class="ButtonCSV">CSV Export</a></p>
|
||||
</fieldset>
|
||||
<br />
|
||||
<br />
|
||||
</body>
|
||||
</html>
|
||||
{/if}
|
||||
|
||||
{if $action == 'show'}
|
||||
<html>
|
||||
<!DOCTYPE html>
|
||||
<html lang="en" class="no-js">
|
||||
<head>
|
||||
<title>Login der Ausbildungsstellen BPM (Bachelor of Arts - Public Management) der Hochschulen Ludwigsburg und Kehl.</title>
|
||||
<link type="text/css" rel="stylesheet" href="../templates/{$global_template}/css/styles_refill.css">
|
||||
<style>
|
||||
.desc{
|
||||
width:400px;
|
||||
}
|
||||
.StandardTable thead th{
|
||||
background: lightgray;
|
||||
border: 1px solid #656565;
|
||||
font-size:12px;
|
||||
font-family:Arial;
|
||||
padding-top:5px;
|
||||
padding-bottom:5px;
|
||||
padding-left:5px;
|
||||
padding-right:5px;
|
||||
}
|
||||
textarea{
|
||||
border: 1px solid #888;
|
||||
height: 6.7em;
|
||||
width: 48.5em;
|
||||
}
|
||||
select{
|
||||
width:630px;
|
||||
}
|
||||
.fieldset1 {
|
||||
border: 1px solid red;
|
||||
}
|
||||
.fieldset2 {
|
||||
border: ridge green;
|
||||
display: block;
|
||||
margin-left: 20px;
|
||||
margin-right: 20px;
|
||||
padding-top: 20px;
|
||||
padding-bottom: 20px;
|
||||
padding-left: 20px;
|
||||
padding-right: 20px;
|
||||
}
|
||||
.legend1 {
|
||||
display: block;
|
||||
padding-left: 20px;
|
||||
padding-right: 20px;
|
||||
border: none;
|
||||
font-size: 30px;
|
||||
}
|
||||
.button {
|
||||
font: bold 11px Arial;
|
||||
text-decoration: none;
|
||||
background-color: #EEEEEE;
|
||||
color: #333333;
|
||||
padding: 2px 6px 2px 6px;
|
||||
border-top: 1px solid #CCCCCC;
|
||||
border-right: 1px solid #333333;
|
||||
border-bottom: 1px solid #333333;
|
||||
border-left: 1px solid #CCCCCC;
|
||||
}
|
||||
.ButtonBack {
|
||||
box-shadow: 0px 10px 14px -7px #276873;
|
||||
background:linear-gradient(to bottom, #599bb3 5%, #408c99 100%);
|
||||
background-color:#599bb3;
|
||||
border-radius:8px;
|
||||
display:inline-block;
|
||||
cursor:pointer;
|
||||
color:#ffffff;
|
||||
font-family:Arial;
|
||||
font-size:20px;
|
||||
font-weight:bold;
|
||||
padding:13px 32px;
|
||||
text-decoration:none;
|
||||
text-shadow:0px 1px 0px #3d768a;
|
||||
}
|
||||
.ButtonBack:hover {
|
||||
background:linear-gradient(to bottom, #408c99 5%, #599bb3 100%);
|
||||
background-color:#408c99;
|
||||
}
|
||||
.ButtonBack:active {
|
||||
position:relative;
|
||||
top:1px;
|
||||
}
|
||||
|
||||
</style>
|
||||
<link rel="stylesheet" type="text/css" href="css/component.css" />
|
||||
<script type="text/javascript">
|
||||
(function(e,t,n){
|
||||
var r=e.querySelectorAll("html")[0];
|
||||
r.className=r.className.replace(/(^|\s)no-js(\s|$)/,"$1js$2")
|
||||
})
|
||||
(document,window,0);
|
||||
</script>
|
||||
</head>
|
||||
<body>
|
||||
<fieldset class="fieldset2">
|
||||
<legend class="legend1" align="center">
|
||||
<b>Dokumentenportal</b>
|
||||
</legend>
|
||||
{if $index_error == '1'}
|
||||
<table width="70%" class="errorTable" align="center">
|
||||
<tr>
|
||||
<td>
|
||||
<img src="../templates/{$global_template}/images/pflichtfelder/achtung_gross.gif">
|
||||
</td>
|
||||
<td><b>Achtung!</b><br>
|
||||
{$index_error_text}
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
<br />
|
||||
{/if}
|
||||
<fieldset class="fieldset1">
|
||||
<legend>
|
||||
<b>Persönliche Angaben</b>
|
||||
</legend>
|
||||
{$dok_anrede}<br>
|
||||
{$dok_vorname} {$dok_nachname}<br>
|
||||
{$dok_str}<br>
|
||||
{$dok_plz} {$dok_ort}<br>
|
||||
<a href="mailto:{$dok_mail}">{$dok_mail}</a>
|
||||
</fieldset>
|
||||
<br>
|
||||
<br>
|
||||
<fieldset>
|
||||
<legend>
|
||||
<b>Verfügbare Dokumente</b>
|
||||
</legend>
|
||||
<form action=?action=stelle method="POST" name="stelle">
|
||||
<table cellspacing="0" cellpadding="2" width="100%" border="1">
|
||||
<tr>
|
||||
<td width="50">
|
||||
<b>Dok. Nr.</b>
|
||||
</td>
|
||||
<td>
|
||||
<b>Datei</b>
|
||||
</td>
|
||||
<td>
|
||||
<b>Dokumentenbeschreibung</b>
|
||||
</td>
|
||||
<td>
|
||||
<b>Dokumentendatum</b>
|
||||
</td>
|
||||
<tr>
|
||||
{section name=table_data1 loop=$table_data1}
|
||||
{if $smarty.section.table_data1.rownum != ''}
|
||||
<tr>
|
||||
<td>
|
||||
{$table_data1[table_data1].up_id}
|
||||
<!--{$smarty.section.table_data1.rownum}-->
|
||||
</td>
|
||||
<td>
|
||||
{if $table_data1[table_data1].exists == 1}
|
||||
<a href='downpdf.php?file={$table_data1[table_data1].basename_link}'>{$table_data1[table_data1].basename}</a>
|
||||
{else}
|
||||
{$table_data1[table_data1].basename}
|
||||
{/if}
|
||||
</td>
|
||||
<td>
|
||||
{$table_data1[table_data1].beschreibung}
|
||||
</td>
|
||||
<td>
|
||||
{$table_data1[table_data1].datum_form}
|
||||
</td>
|
||||
</tr>
|
||||
{/if}
|
||||
{/section}
|
||||
</table>
|
||||
</fieldset>
|
||||
<br />
|
||||
<br />
|
||||
<p align='center'>
|
||||
<a href="?" class="ButtonBack">zurück</a>
|
||||
</p>
|
||||
</fieldset>
|
||||
</body>
|
||||
</html>
|
||||
{/if}
|
||||
|
||||
{if $action == 'zusage1'}
|
||||
<html>
|
||||
<!DOCTYPE html>
|
||||
<html lang="en" class="no-js">
|
||||
<head>
|
||||
<title>Zusageassistent</title>
|
||||
<link type="text/css" rel="stylesheet" href="../templates/{$global_template}/css/styles_refill.css">
|
||||
<style>
|
||||
.desc{
|
||||
width:400px;
|
||||
}
|
||||
.StandardTable thead th{
|
||||
background: lightgray;
|
||||
border: 1px solid #656565;
|
||||
font-size:12px;
|
||||
font-family:Arial;
|
||||
padding-top:5px;
|
||||
padding-bottom:5px;
|
||||
padding-left:5px;
|
||||
padding-right:5px;
|
||||
}
|
||||
textarea{
|
||||
border: 1px solid #888;
|
||||
height: 6.7em;
|
||||
width: 48.5em;
|
||||
}
|
||||
select{
|
||||
width:630px;
|
||||
}
|
||||
.fieldset1 {
|
||||
border: 1px solid red;
|
||||
}
|
||||
.fieldset2 {
|
||||
border: ridge green;
|
||||
display: block;
|
||||
margin-left: 20px;
|
||||
margin-right: 20px;
|
||||
padding-top: 20px;
|
||||
padding-bottom: 20px;
|
||||
padding-left: 20px;
|
||||
padding-right: 20px;
|
||||
}
|
||||
.legend1 {
|
||||
display: block;
|
||||
padding-left: 20px;
|
||||
padding-right: 20px;
|
||||
border: none;
|
||||
font-size: 30px;
|
||||
}
|
||||
.button {
|
||||
font: bold 11px Arial;
|
||||
text-decoration: none;
|
||||
background-color: #EEEEEE;
|
||||
color: #333333;
|
||||
padding: 2px 6px 2px 6px;
|
||||
border-top: 1px solid #CCCCCC;
|
||||
border-right: 1px solid #333333;
|
||||
border-bottom: 1px solid #333333;
|
||||
border-left: 1px solid #CCCCCC;
|
||||
}
|
||||
.ButtonBack {
|
||||
box-shadow: 0px 10px 14px -7px #276873;
|
||||
background:linear-gradient(to bottom, #599bb3 5%, #408c99 100%);
|
||||
background-color:#599bb3;
|
||||
border-radius:8px;
|
||||
display:inline-block;
|
||||
cursor:pointer;
|
||||
color:#ffffff;
|
||||
font-family:Arial;
|
||||
font-size:20px;
|
||||
font-weight:bold;
|
||||
padding:13px 32px;
|
||||
text-decoration:none;
|
||||
text-shadow:0px 1px 0px #3d768a;
|
||||
}
|
||||
.ButtonBack:hover {
|
||||
background:linear-gradient(to bottom, #408c99 5%, #599bb3 100%);
|
||||
background-color:#408c99;
|
||||
}
|
||||
.ButtonBack:active {
|
||||
position:relative;
|
||||
top:1px;
|
||||
}
|
||||
.btn_ja {
|
||||
background-color:#94c2a0;
|
||||
border-radius:28px;
|
||||
border:1px solid #18ab29;
|
||||
display:inline-block;
|
||||
cursor:pointer;
|
||||
color:#ffffff;
|
||||
font-family:Arial;
|
||||
font-size:17px;
|
||||
padding:16px 31px;
|
||||
text-decoration:none;
|
||||
text-shadow:0px 1px 0px #2f6627;
|
||||
}
|
||||
.btn_ja:hover {
|
||||
background-color:#5cbf2a;
|
||||
}
|
||||
.btn_ja:active {
|
||||
position:relative;
|
||||
top:1px;
|
||||
}
|
||||
|
||||
.btn_nein {
|
||||
box-shadow: 0px 0px 0px 0px #c73636;
|
||||
background-color:#ff8585;
|
||||
border-radius:28px;
|
||||
border:1px solid #d44444;
|
||||
display:inline-block;
|
||||
cursor:pointer;
|
||||
color:#ffffff;
|
||||
font-family:Arial;
|
||||
font-size:17px;
|
||||
padding:16px 31px;
|
||||
text-decoration:none;
|
||||
text-shadow:0px 1px 0px #f02222;
|
||||
}
|
||||
.btn_nein:hover {
|
||||
background-color:#f51818;
|
||||
}
|
||||
.btn_nein:active {
|
||||
position:relative;
|
||||
top:1px;
|
||||
}
|
||||
</style>
|
||||
<link rel="stylesheet" type="text/css" href="css/component.css" />
|
||||
<script type="text/javascript">
|
||||
(function(e,t,n){
|
||||
var r=e.querySelectorAll("html")[0];
|
||||
r.className=r.className.replace(/(^|\s)no-js(\s|$)/,"$1js$2")
|
||||
})
|
||||
(document,window,0);
|
||||
</script>
|
||||
</head>
|
||||
<body>
|
||||
<fieldset class="fieldset2">
|
||||
<legend class="legend1" align="center">
|
||||
<b>Zusageassistent</b>
|
||||
</legend>
|
||||
{if $index_error == '1'}
|
||||
<table width="70%" class="errorTable" align="center">
|
||||
<tr>
|
||||
<td>
|
||||
<img src="../templates/{$global_template}/images/pflichtfelder/achtung_gross.gif">
|
||||
</td>
|
||||
<td><b>Achtung!</b><br>
|
||||
{$index_error_text}
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
<br />
|
||||
{/if}
|
||||
<h1><p align="center">{$text_nachfrage}</p></h1>
|
||||
<br>
|
||||
<br>
|
||||
<form action=?action=stelle method="POST" name="stelle">
|
||||
<table cellspacing="0" cellpadding="2" width="100%" border="0">
|
||||
<tr>
|
||||
<td width="25%" align="center">
|
||||
|
||||
</td>
|
||||
<td width="25%" align="center">
|
||||
<a href="?action=zusage2&ka_id={$ka_id}" class="btn_ja">Ja</a>
|
||||
</td>
|
||||
<td width="25%" align="center">
|
||||
<a href="?action=zusage_holen&ka_id={$ka_id}" class="btn_nein">Nein</a>
|
||||
</td>
|
||||
<td width="25%" align="center">
|
||||
|
||||
</td>
|
||||
<tr>
|
||||
</table>
|
||||
<br />
|
||||
<br />
|
||||
</fieldset>
|
||||
</body>
|
||||
</html>
|
||||
{/if}
|
||||
|
||||
{if $action == 'zusage_holen'}
|
||||
<html>
|
||||
<head>
|
||||
<link type="text/css" rel="stylesheet" href="../templates/{$global_template}/css/styles_refill.css">
|
||||
<script type='text/javascript' src='../ckeditor5/build/ckeditor.js'></script>
|
||||
<style>
|
||||
.ck-editor__editable {
|
||||
min-height: 300px;
|
||||
}
|
||||
p {
|
||||
margin: 0;
|
||||
}
|
||||
</style>
|
||||
</head>
|
||||
<body>
|
||||
<fieldset>
|
||||
<legend>
|
||||
<b>Zusage einholen</b>
|
||||
</legend>
|
||||
<br />
|
||||
<br />
|
||||
<form action="?action=mailsenden" method='post' name='mailsenden'>
|
||||
<table width="100%" border="1" cellspacing="0" cellpadding="0" rules="all">
|
||||
<tr>
|
||||
<td width="200" height="40" style="padding-left:5px">
|
||||
Praxisstelle:
|
||||
</td>
|
||||
<td style="padding-left:5px">
|
||||
{$dst_bez} <{$dst_mail}>
|
||||
</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td height="40" style="padding-left:5px">
|
||||
Empfänger:
|
||||
</td>
|
||||
<td style="padding-left:5px">
|
||||
{$bew_name} <{$bew_mail}>
|
||||
</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td height="40" style="padding-left:5px">
|
||||
Betreff:
|
||||
</td>
|
||||
<td style="padding-left:5px">
|
||||
<input type="text" id="betreff" name="betreff" value="{$mail_betreff}" size="80">
|
||||
</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td height="40" style="padding-left:5px">
|
||||
Mailtext:
|
||||
</td>
|
||||
<td style="padding-left:5px">
|
||||
<textarea id='text' name='text'>{$mail_text}</textarea>
|
||||
{literal}
|
||||
<script>ClassicEditor
|
||||
.create( document.querySelector( '#text' ), {
|
||||
toolbar: {
|
||||
items: [
|
||||
'heading',
|
||||
'|',
|
||||
'fontSize',
|
||||
'fontFamily',
|
||||
'fontBackgroundColor',
|
||||
'fontColor',
|
||||
'|',
|
||||
'bold',
|
||||
'italic',
|
||||
'link',
|
||||
'bulletedList',
|
||||
'numberedList',
|
||||
'|',
|
||||
'alignment',
|
||||
'indent',
|
||||
'outdent',
|
||||
'|',
|
||||
'imageUpload',
|
||||
'blockQuote',
|
||||
'insertTable',
|
||||
'mediaEmbed',
|
||||
'undo',
|
||||
'redo'
|
||||
]
|
||||
},
|
||||
language: 'de',
|
||||
image: {
|
||||
toolbar: [
|
||||
'imageTextAlternative',
|
||||
'imageStyle:full',
|
||||
'imageStyle:side'
|
||||
]
|
||||
},
|
||||
table: {
|
||||
contentToolbar: [
|
||||
'tableColumn',
|
||||
'tableRow',
|
||||
'mergeTableCells',
|
||||
'tableCellProperties',
|
||||
'tableProperties'
|
||||
]
|
||||
},
|
||||
licenseKey: '',
|
||||
} )
|
||||
.then( editor => {
|
||||
window.editor = editor;
|
||||
} )
|
||||
.catch( error => {
|
||||
console.error( error );
|
||||
} );
|
||||
</script>
|
||||
{/literal}
|
||||
<input type="hidden" name="bew_ka_id" id="bew_ka_id" size="101" value="{$bew_ka_id}">
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
</p>
|
||||
<br />
|
||||
<br />
|
||||
<p align='center'>
|
||||
<input type='submit' name='senden' value="Mail senden">
|
||||
</p>
|
||||
<br />
|
||||
</form>
|
||||
</fieldset>
|
||||
<br />
|
||||
<br />
|
||||
<br />
|
||||
<br />
|
||||
</body>
|
||||
</html>
|
||||
{/if}
|
||||
{if $action == 'mailsenden'}
|
||||
<html>
|
||||
<head>
|
||||
<link type="text/css" rel="stylesheet" href="../templates/{$global_template}/css/styles_refill.css">
|
||||
</head>
|
||||
<body>
|
||||
<fieldset>
|
||||
<legend>
|
||||
<b>Ergebnis</b>
|
||||
</legend>
|
||||
<br />
|
||||
<br />
|
||||
{$mail_senderg}
|
||||
<br>
|
||||
<br>
|
||||
Sie können das Fenster nun schließen.
|
||||
</fieldset>
|
||||
<br />
|
||||
<br />
|
||||
<br />
|
||||
<br />
|
||||
</body>
|
||||
</html>
|
||||
{/if}
|
||||
{if $action == 'zusage2'}
|
||||
<html>
|
||||
<head>
|
||||
<link type="text/css" rel="stylesheet" href="../templates/{$global_template}/css/styles_refill.css">
|
||||
</head>
|
||||
<body>
|
||||
<fieldset>
|
||||
<legend>
|
||||
<b>Ergebnis</b>
|
||||
</legend>
|
||||
<br />
|
||||
<br />
|
||||
<table width="100%" border="1" cellspacing="0" cellpadding="2" rules="all">
|
||||
<tr>
|
||||
<td>
|
||||
Status Praxisstelle:
|
||||
</td>
|
||||
<td>
|
||||
{$mail_senderg_prx}
|
||||
</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>
|
||||
Status Bewerber:
|
||||
</td>
|
||||
<td>
|
||||
{$mail_senderg_bew}
|
||||
</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>
|
||||
Status Hochschule:
|
||||
</td>
|
||||
<td>
|
||||
{$mail_senderg_hs}
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
<br>
|
||||
<br>
|
||||
Sie können das Fenster nun schließen.
|
||||
</fieldset>
|
||||
<br />
|
||||
<br />
|
||||
<br />
|
||||
<br />
|
||||
</body>
|
||||
</html>
|
||||
{/if}
|
374
templates/modern/praxisstelle/bewerbungen.html_ohne_zusage
Executable file
374
templates/modern/praxisstelle/bewerbungen.html_ohne_zusage
Executable file
@ -0,0 +1,374 @@
|
||||
{if $action == ''}
|
||||
<html>
|
||||
<head>
|
||||
<link type="text/css" rel="stylesheet" href="../templates/{$global_template}/css/styles_refill.css">
|
||||
<link rel="stylesheet" href="../jquery/jquery-ui.css">
|
||||
<link rel="stylesheet" href="../jquery/jquery.timepicker.min.css">
|
||||
<script src="../jquery/jquery-1.12.4.js"></script>
|
||||
<script src="../jquery/jquery-ui.js"></script>
|
||||
<script src="../jquery/globalize.js"></script>
|
||||
<script src="../jquery/globalize.culture.de-DE.js"></script>
|
||||
<script src="../jquery/jquery.mousewheel.js"></script>
|
||||
<script src="../jquery/jquery.timepicker.min.js"></script>
|
||||
<style type="text/css">
|
||||
.spinner {
|
||||
width: 112px;
|
||||
height: 15px;
|
||||
font-size: 12px !important;
|
||||
}
|
||||
</style>
|
||||
|
||||
|
||||
<style>
|
||||
.StandardTable thead th{
|
||||
background: lightgray;
|
||||
border: 1px solid #656565;
|
||||
font-size:12px;
|
||||
font-family:Arial;
|
||||
padding-top:5px;
|
||||
padding-bottom:5px;
|
||||
padding-left:5px;
|
||||
padding-right:5px;
|
||||
}
|
||||
textarea{
|
||||
border: 1px solid #888;
|
||||
height: 6.7em;
|
||||
width: 48.5em;
|
||||
}
|
||||
select{
|
||||
width:630px;
|
||||
}
|
||||
.row_0 {
|
||||
background-color: #FFFFFF;
|
||||
}
|
||||
.row_1 {
|
||||
background-color: #E1E8F1;
|
||||
}
|
||||
.ButtonAnzeigen {
|
||||
box-shadow: 0px 10px 14px -7px #3e7327;
|
||||
background:linear-gradient(to bottom, #77b55a 5%, #72b352 100%);
|
||||
background-color:#77b55a;
|
||||
border-radius:4px;
|
||||
border:1px solid #4b8f29;
|
||||
display:inline-block;
|
||||
cursor:pointer;
|
||||
color:#ffffff;
|
||||
font-family:Arial;
|
||||
font-size:13px;
|
||||
font-weight:bold;
|
||||
padding:6px 12px;
|
||||
text-decoration:none;
|
||||
text-shadow:0px 1px 0px #5b8a3c;
|
||||
}
|
||||
.ButtonAnzeigen:hover {
|
||||
background:linear-gradient(to bottom, #72b352 5%, #77b55a 100%);
|
||||
background-color:#72b352;
|
||||
}
|
||||
.ButtonAnzeigen:active {
|
||||
position:relative;
|
||||
top:1px;
|
||||
}
|
||||
|
||||
|
||||
.ButtonCSV {
|
||||
box-shadow: 0px 10px 14px -7px #276873;
|
||||
background:linear-gradient(to bottom, #599bb3 5%, #408c99 100%);
|
||||
background-color:#599bb3;
|
||||
border-radius:4px;
|
||||
border:1px solid #29668f;
|
||||
display:inline-block;
|
||||
cursor:pointer;
|
||||
color:#ffffff;
|
||||
font-family:Arial;
|
||||
font-size:13px;
|
||||
font-weight:bold;
|
||||
padding:6px 12px;
|
||||
text-decoration:none;
|
||||
text-shadow:0px 1px 0px #3d768a;
|
||||
}
|
||||
.ButtonCSV:hover {
|
||||
background:linear-gradient(to bottom, #408c99 5%, #599bb3 100%);
|
||||
background-color:#408c99;
|
||||
}
|
||||
.ButtonCSV:active {
|
||||
position:relative;
|
||||
top:1px;
|
||||
}
|
||||
|
||||
|
||||
.ButtonArchiv {
|
||||
box-shadow: 0px 10px 14px -7px #3e7327;
|
||||
background:linear-gradient(to bottom, #e4685d 5%, #eb675e 100%);
|
||||
background-color:#e4685d;
|
||||
border-radius:4px;
|
||||
border:1px solid #98051D;
|
||||
display:inline-block;
|
||||
cursor:pointer;
|
||||
color:#ffffff;
|
||||
font-family:Arial;
|
||||
font-size:13px;
|
||||
font-weight:bold;
|
||||
padding:6px 12px;
|
||||
text-decoration:none;
|
||||
text-shadow:0px 1px 0px #b23e35;
|
||||
}
|
||||
.ButtonArchiv:hover {
|
||||
background:linear-gradient(to bottom, #eb675e 5%, #e4685d 100%);
|
||||
background-color:#eb675e;
|
||||
}
|
||||
.ButtonArchiv:active {
|
||||
position:relative;
|
||||
top:1px;
|
||||
}
|
||||
|
||||
</style>
|
||||
</head>
|
||||
|
||||
<body>
|
||||
|
||||
<fieldset>
|
||||
<legend>
|
||||
<b>Bewerbungen</b>
|
||||
</legend>
|
||||
<br />
|
||||
<br />
|
||||
<table cellspacing="0" cellpadding="0" width="100%" border="0" class="StandardTable">
|
||||
<tr>
|
||||
<td width="10%">
|
||||
<b>Bew. Nr.</b>
|
||||
</td>
|
||||
<td width="30%">
|
||||
<b>Name</b>
|
||||
</td>
|
||||
<td width="10%">
|
||||
<b>Testergebnis</b>
|
||||
</td>
|
||||
<td width="10%">
|
||||
<b>Schwerbehinderung</b>
|
||||
</td>
|
||||
<td width="20%">
|
||||
<b>Bewerbungsdatum</b>
|
||||
</td>
|
||||
<td width="10%">
|
||||
<b>Auswahl</b>
|
||||
</td>
|
||||
<td width="10%">
|
||||
<b>Ausblenden</b>
|
||||
</td>
|
||||
</tr>
|
||||
{section name=table_data1 loop=$table_data1}
|
||||
<tr>
|
||||
<td class="row_{$table_data1[table_data1].zaehler}" height='40'>
|
||||
{$table_data1[table_data1].ka_id}
|
||||
<!--{$smarty.section.table_data1.rownum}-->
|
||||
</td>
|
||||
<td class="row_{$table_data1[table_data1].zaehler}" height='40'>
|
||||
{$table_data1[table_data1].nachname}, {$table_data1[table_data1].vorname} (<a href="mailto:{$table_data1[table_data1].mail}">{$table_data1[table_data1].mail}</a>)
|
||||
</td>
|
||||
<td class="row_{$table_data1[table_data1].zaehler}" height='40'>
|
||||
{$table_data1[table_data1].testergebnis} / 130 Punkten
|
||||
</td>
|
||||
<td class="row_{$table_data1[table_data1].zaehler}" height='40'>
|
||||
{if $table_data1[table_data1].behinderung == 'J'} Ja {else} Nein {/if}
|
||||
</td>
|
||||
<td class="row_{$table_data1[table_data1].zaehler}" height='40'>
|
||||
{$table_data1[table_data1].datum_form}
|
||||
</td>
|
||||
<td class="row_{$table_data1[table_data1].zaehler}" height='40'>
|
||||
{if $table_data1[table_data1].showfiles == 1}
|
||||
<a href="?action=show&ka_id={$table_data1[table_data1].ka_id}" class="ButtonAnzeigen">Daten anzeigen</a>
|
||||
{/if}
|
||||
</td>
|
||||
<td class="row_{$table_data1[table_data1].zaehler}" height='40'>
|
||||
<a href="?action=archive&wu_id={$table_data1[table_data1].wu_id}" class="ButtonArchiv">Archivieren</a>
|
||||
</td>
|
||||
</tr>
|
||||
{/section}
|
||||
</table>
|
||||
<br />
|
||||
<p align='center'><a href="export_bewerber.php" class="ButtonCSV">CSV Export</a></p>
|
||||
</fieldset>
|
||||
<br />
|
||||
<br />
|
||||
</body>
|
||||
</html>
|
||||
{/if}
|
||||
|
||||
{if $action == 'show'}
|
||||
<html>
|
||||
<!DOCTYPE html>
|
||||
<html lang="en" class="no-js">
|
||||
<head>
|
||||
<title>Login der Ausbildungsstellen BPM (Bachelor of Arts - Public Management) der Hochschulen Ludwigsburg und Kehl.</title>
|
||||
<link type="text/css" rel="stylesheet" href="../templates/{$global_template}/css/styles_refill.css">
|
||||
<style>
|
||||
.desc{
|
||||
width:400px;
|
||||
}
|
||||
.StandardTable thead th{
|
||||
background: lightgray;
|
||||
border: 1px solid #656565;
|
||||
font-size:12px;
|
||||
font-family:Arial;
|
||||
padding-top:5px;
|
||||
padding-bottom:5px;
|
||||
padding-left:5px;
|
||||
padding-right:5px;
|
||||
}
|
||||
textarea{
|
||||
border: 1px solid #888;
|
||||
height: 6.7em;
|
||||
width: 48.5em;
|
||||
}
|
||||
select{
|
||||
width:630px;
|
||||
}
|
||||
.fieldset1 {
|
||||
border: 1px solid red;
|
||||
}
|
||||
.fieldset2 {
|
||||
border: ridge green;
|
||||
display: block;
|
||||
margin-left: 20px;
|
||||
margin-right: 20px;
|
||||
padding-top: 20px;
|
||||
padding-bottom: 20px;
|
||||
padding-left: 20px;
|
||||
padding-right: 20px;
|
||||
}
|
||||
.legend1 {
|
||||
display: block;
|
||||
padding-left: 20px;
|
||||
padding-right: 20px;
|
||||
border: none;
|
||||
font-size: 30px;
|
||||
}
|
||||
.button {
|
||||
font: bold 11px Arial;
|
||||
text-decoration: none;
|
||||
background-color: #EEEEEE;
|
||||
color: #333333;
|
||||
padding: 2px 6px 2px 6px;
|
||||
border-top: 1px solid #CCCCCC;
|
||||
border-right: 1px solid #333333;
|
||||
border-bottom: 1px solid #333333;
|
||||
border-left: 1px solid #CCCCCC;
|
||||
}
|
||||
.ButtonBack {
|
||||
box-shadow: 0px 10px 14px -7px #276873;
|
||||
background:linear-gradient(to bottom, #599bb3 5%, #408c99 100%);
|
||||
background-color:#599bb3;
|
||||
border-radius:8px;
|
||||
display:inline-block;
|
||||
cursor:pointer;
|
||||
color:#ffffff;
|
||||
font-family:Arial;
|
||||
font-size:20px;
|
||||
font-weight:bold;
|
||||
padding:13px 32px;
|
||||
text-decoration:none;
|
||||
text-shadow:0px 1px 0px #3d768a;
|
||||
}
|
||||
.ButtonBack:hover {
|
||||
background:linear-gradient(to bottom, #408c99 5%, #599bb3 100%);
|
||||
background-color:#408c99;
|
||||
}
|
||||
.ButtonBack:active {
|
||||
position:relative;
|
||||
top:1px;
|
||||
}
|
||||
|
||||
</style>
|
||||
<link rel="stylesheet" type="text/css" href="css/component.css" />
|
||||
<script type="text/javascript">
|
||||
(function(e,t,n){
|
||||
var r=e.querySelectorAll("html")[0];
|
||||
r.className=r.className.replace(/(^|\s)no-js(\s|$)/,"$1js$2")
|
||||
})
|
||||
(document,window,0);
|
||||
</script>
|
||||
</head>
|
||||
<body>
|
||||
<fieldset class="fieldset2">
|
||||
<legend class="legend1" align="center">
|
||||
<b>Dokumentenportal</b>
|
||||
</legend>
|
||||
{if $index_error == '1'}
|
||||
<table width="70%" class="errorTable" align="center">
|
||||
<tr>
|
||||
<td>
|
||||
<img src="../templates/{$global_template}/images/pflichtfelder/achtung_gross.gif">
|
||||
</td>
|
||||
<td><b>Achtung!</b><br>
|
||||
{$index_error_text}
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
<br />
|
||||
{/if}
|
||||
<fieldset class="fieldset1">
|
||||
<legend>
|
||||
<b>Persönliche Angaben</b>
|
||||
</legend>
|
||||
{$dok_anrede}<br>
|
||||
{$dok_vorname} {$dok_nachname}<br>
|
||||
{$dok_str}<br>
|
||||
{$dok_plz} {$dok_ort}<br>
|
||||
<a href="mailto:{$dok_mail}">{$dok_mail}</a>
|
||||
</fieldset>
|
||||
<br>
|
||||
<br>
|
||||
<fieldset>
|
||||
<legend>
|
||||
<b>Verfügbare Dokumente</b>
|
||||
</legend>
|
||||
<form action=?action=stelle method="POST" name="stelle">
|
||||
<table cellspacing="0" cellpadding="2" width="100%" border="1">
|
||||
<tr>
|
||||
<td width="50">
|
||||
<b>Dok. Nr.</b>
|
||||
</td>
|
||||
<td>
|
||||
<b>Datei</b>
|
||||
</td>
|
||||
<td>
|
||||
<b>Dokumentenbeschreibung</b>
|
||||
</td>
|
||||
<td>
|
||||
<b>Dokumentendatum</b>
|
||||
</td>
|
||||
<tr>
|
||||
{section name=table_data1 loop=$table_data1}
|
||||
{if $smarty.section.table_data1.rownum != ''}
|
||||
<tr>
|
||||
<td>
|
||||
{$table_data1[table_data1].up_id}
|
||||
<!--{$smarty.section.table_data1.rownum}-->
|
||||
</td>
|
||||
<td>
|
||||
{if $table_data1[table_data1].exists == 1}
|
||||
<a href='downpdf.php?file={$table_data1[table_data1].basename_link}'>{$table_data1[table_data1].basename}</a>
|
||||
{else}
|
||||
{$table_data1[table_data1].basename}
|
||||
{/if}
|
||||
</td>
|
||||
<td>
|
||||
{$table_data1[table_data1].beschreibung}
|
||||
</td>
|
||||
<td>
|
||||
{$table_data1[table_data1].datum_form}
|
||||
</td>
|
||||
</tr>
|
||||
{/if}
|
||||
{/section}
|
||||
</table>
|
||||
</fieldset>
|
||||
<br />
|
||||
<br />
|
||||
<p align='center'>
|
||||
<a href="?" class="ButtonBack">zurück</a>
|
||||
</p>
|
||||
</fieldset>
|
||||
</body>
|
||||
</html>
|
||||
{/if}
|
149
templates/modern/praxisstelle/hauptframe.html
Executable file
149
templates/modern/praxisstelle/hauptframe.html
Executable file
@ -0,0 +1,149 @@
|
||||
{if $action == ''}
|
||||
<html>
|
||||
<head>
|
||||
<title>BPM Ausbildungsstellenverwaltung</title>
|
||||
<link type="text/css" rel="stylesheet" href="../templates/{$global_template}/css/styles_refill.css">
|
||||
<script type='text/javascript' src='../ckeditor5/build/ckeditor.js'></script>
|
||||
<!-- Add jQuery library -->
|
||||
<script type="text/javascript" src="../fancybox-2.1.7/lib/jquery-1.10.2.min.js"></script>
|
||||
<!-- Add mousewheel plugin (this is optional) -->
|
||||
<script type="text/javascript" src="../fancybox-2.1.7/lib/jquery.mousewheel.pack.js?v=3.1.3"></script>
|
||||
<!-- Add fancyBox main JS and CSS files -->
|
||||
<script type="text/javascript" src="../fancybox-2.1.7/source/jquery.fancybox.pack.js?v=2.1.5"></script>
|
||||
<link rel="stylesheet" type="text/css" href="../fancybox-2.1.7/source/jquery.fancybox.css?v=2.1.5" media="screen" />
|
||||
<script type="text/javascript">
|
||||
$(document).ready(function() {
|
||||
$('.box').fancybox({
|
||||
'width' : '100%',
|
||||
'height' : '100%',
|
||||
'autoScale' : true,
|
||||
'transitionIn' : 'elastic',
|
||||
'transitionOut' : 'elastic',
|
||||
'type' : 'iframe',
|
||||
helpers: {
|
||||
overlay : {
|
||||
closeClick: true
|
||||
}
|
||||
}
|
||||
});
|
||||
});
|
||||
</script>
|
||||
<style>
|
||||
.ButtonAnzeigen {
|
||||
box-shadow: 0px 10px 14px -7px #3e7327;
|
||||
background:linear-gradient(to bottom, #77b55a 5%, #72b352 100%);
|
||||
background-color:#77b55a;
|
||||
border-radius:4px;
|
||||
border:1px solid #4b8f29;
|
||||
display:inline-block;
|
||||
cursor:pointer;
|
||||
color:#ffffff;
|
||||
font-family:Arial;
|
||||
font-size:13px;
|
||||
font-weight:bold;
|
||||
padding:0px 20px;
|
||||
text-decoration:none;
|
||||
text-shadow:0px 1px 0px #5b8a3c;
|
||||
}
|
||||
.ButtonAnzeigen:hover {
|
||||
background:linear-gradient(to bottom, #72b352 5%, #77b55a 100%);
|
||||
background-color:#72b352;
|
||||
}
|
||||
.ButtonAnzeigen:active {
|
||||
position:relative;
|
||||
top:1px;
|
||||
}
|
||||
</style>
|
||||
</head>
|
||||
|
||||
<body bgcolor="white" text="black" link="blue" vlink="purple" alink="red">
|
||||
|
||||
<div class="header">
|
||||
<div>
|
||||
<div>Willkommen</div>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<div class="pat_list_box">
|
||||
<p>
|
||||
<table border="0" bordercolordark="white" bordercolorlight="lightgray" cellspacing="0" width="100%" height="80%">
|
||||
<tr>
|
||||
<td align="center">
|
||||
<b>Willkommen bei der BPM Ausbildungsstellenverwaltung</b>
|
||||
<br />
|
||||
<br />
|
||||
<br />
|
||||
Wählen Sie oben einen Reiter aus, um den gewünschten Bereich zu verwalten.
|
||||
|
||||
</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td align="center">
|
||||
<fieldset style="width:800px">
|
||||
<legend>
|
||||
<b>Aktuelle Nachrichten</b>
|
||||
</legend>
|
||||
<table cellspacing="0" cellpadding="2" width="100%" border="1" width="80%">
|
||||
<tr>
|
||||
<td>
|
||||
<b>Datum - Zeit</b>
|
||||
</td>
|
||||
<td>
|
||||
<b>Überschrift</b>
|
||||
</td>
|
||||
<td>
|
||||
<b>Anzeige</b>
|
||||
</td>
|
||||
<tr>
|
||||
{section name=table_data1 loop=$table_data1}
|
||||
{if $smarty.section.table_data1.rownum != ''}
|
||||
<tr>
|
||||
<td>
|
||||
{$table_data1[table_data1].pn_date_form}
|
||||
</td>
|
||||
<td>
|
||||
{$table_data1[table_data1].pn_headline}
|
||||
</td>
|
||||
<td>
|
||||
<a class="ButtonAnzeigen box" title="{$table_data1[table_data1].pn_headline}" href="?action=show&pn_id={$table_data1[table_data1].pn_id}">Nachricht anzeigen</a>
|
||||
</td>
|
||||
</tr>
|
||||
{/if}
|
||||
{/section}
|
||||
</table>
|
||||
</fieldset>
|
||||
</tr>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
<br>
|
||||
<br>
|
||||
</div>
|
||||
|
||||
</body>
|
||||
</html>
|
||||
{/if}
|
||||
|
||||
{if $action == 'show'}
|
||||
<html>
|
||||
<head>
|
||||
<link type="text/css" rel="stylesheet" href="../templates/{$global_template}/css/styles_refill.css">
|
||||
</head>
|
||||
<body>
|
||||
<fieldset>
|
||||
<legend>
|
||||
<b>{$prx_show_headline}</b>
|
||||
</legend>
|
||||
{$prx_show_text}
|
||||
<br />
|
||||
<br />
|
||||
<br />
|
||||
</form>
|
||||
</fieldset>
|
||||
<br />
|
||||
<br />
|
||||
<br />
|
||||
<br />
|
||||
</body>
|
||||
</html>
|
||||
{/if}
|
304
templates/modern/praxisstelle/index.html
Executable file
304
templates/modern/praxisstelle/index.html
Executable file
@ -0,0 +1,304 @@
|
||||
{if $action == ''}
|
||||
<html>
|
||||
<head>
|
||||
<title>Login der Ausbildungsstellen BPM (Bachelor of Arts - Public Management) der Hochschulen Ludwigsburg und Kehl.</title>
|
||||
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
|
||||
<meta http-equiv="Pragma" content="no-cache">
|
||||
<link rel="stylesheet" href="../templates/{$global_template}/css/styles_login.css" type="text/css">
|
||||
<style>
|
||||
.squarebutton_blue{
|
||||
width:200px;
|
||||
}
|
||||
</style>
|
||||
<link rel="stylesheet" type="text/css" href="fancybox/jquery.fancybox-1.3.4.css" media="screen" />
|
||||
<script type="text/javascript" src="../fancybox/jquery-1.5.1.min.js"></script>
|
||||
<!-- DATEI GIBTS NICHT <script>!window.jQuery && document.write('<script src="jquery-1.4.3.min.js"><\/script>');</script>-->
|
||||
<script type="text/javascript" src="../fancybox/jquery.mousewheel-3.0.4.pack.js"></script>
|
||||
<script type="text/javascript" src="../fancybox/jquery.fancybox-1.3.4.pack.js"></script>
|
||||
<script type="text/javascript">
|
||||
$(document).ready(function() {
|
||||
$(".box").fancybox({
|
||||
'width' : '75%',
|
||||
'height' : '75%',
|
||||
'autoScale' : true,
|
||||
'transitionIn' : 'elastic',
|
||||
'transitionOut' : 'elastic',
|
||||
'type' : 'iframe'
|
||||
});
|
||||
});
|
||||
</script>
|
||||
</head>
|
||||
<body onload="if(document.login)document.login.username.focus();return false;">
|
||||
<table height="100%" width="100%">
|
||||
<tr>
|
||||
<td width="20%">
|
||||
|
||||
</td>
|
||||
<td width="60%">
|
||||
<div class="Header">
|
||||
<div>
|
||||
<div align="center">Login der Ausbildungsstellen BPM (Bachelor of Arts - Public Management) der Hochschulen Ludwigsburg und Kehl.</div>
|
||||
</div>
|
||||
</div>
|
||||
<div class="pat_list_box">
|
||||
<p>
|
||||
{if $index_error == '1'}
|
||||
<table width="70%" class="errorTable" align="center">
|
||||
<tr>
|
||||
<td>
|
||||
<img src="../templates/{$global_template}/images/pflichtfelder/achtung_gross.gif">
|
||||
</td>
|
||||
<td><b>Achtung!</b><br>
|
||||
{$index_error_text}
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
<br />
|
||||
{/if}
|
||||
<p align="center">Herzlich willkommen, bitte loggen Sie sich mit Ihren registrierten Zugangsdaten ein.
|
||||
<br>
|
||||
</p>
|
||||
<table align="center" border="0" bordercolordark="white" bordercolorlight="lightgray" cellspacing="0" width="96%" >
|
||||
<tr>
|
||||
<td width="200px" align="center" valign="middle">
|
||||
<img style="margin:10px;padding:10px;"src="../templates/{$global_template}/images/deputat_icon.svg" height="100">
|
||||
</td>
|
||||
<td align="left">
|
||||
<table width="100%">
|
||||
<form action=?action=anmeld method="POST" name="login">
|
||||
<tr>
|
||||
<td width="40%">
|
||||
<strong>E-Mailadresse</strong>
|
||||
</td>
|
||||
<td>
|
||||
<input class="eingabe" name="username" tabindex="1">
|
||||
</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td width="40%">
|
||||
<strong>Passwort</strong>
|
||||
</td>
|
||||
<td>
|
||||
<input class="eingabe" type="password" name="password" tabindex="2">
|
||||
</td>
|
||||
</tr>
|
||||
|
||||
<tr>
|
||||
<td width="100%" colspan="2" align="center">
|
||||
|
||||
</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td width="40%">
|
||||
|
||||
</td>
|
||||
<td>
|
||||
<input type="submit" value="Login">
|
||||
</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td width="100%" colspan="2" align="center">
|
||||
|
||||
</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<tr>
|
||||
</table>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
<p align="center">
|
||||
<br />
|
||||
<br />
|
||||
<a class="squarebutton_blue box" href="?action=reset"><span>Passwort vergessen</span></a>
|
||||
</p>
|
||||
<br />
|
||||
<br />
|
||||
</div>
|
||||
</td>
|
||||
<td width="20%">
|
||||
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
</form>
|
||||
</body>
|
||||
</html>
|
||||
{/if}
|
||||
|
||||
{if $action == 'anmeld'}
|
||||
<meta http-equiv="refresh" content="0; URL=indexframe.php">
|
||||
{/if}
|
||||
|
||||
|
||||
|
||||
{if $action == 'reset'}
|
||||
<html>
|
||||
<head>
|
||||
<title>Passwort vergessen (Bachelor of Arts - Public Management) der Hochschulen Ludwigsburg und Kehl.</title>
|
||||
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
|
||||
<meta http-equiv="Pragma" content="no-cache">
|
||||
<link rel="stylesheet" href="../templates/{$global_template}/css/styles_login.css" type="text/css">
|
||||
<style>
|
||||
.squarebutton_blue{
|
||||
width:200px;
|
||||
}
|
||||
</style>
|
||||
<link rel="stylesheet" type="text/css" href="fancybox/jquery.fancybox-1.3.4.css" media="screen" />
|
||||
<script type="text/javascript" src="../fancybox/jquery-1.5.1.min.js"></script>
|
||||
<!-- DATEI GIBTS NICHT <script>!window.jQuery && document.write('<script src="jquery-1.4.3.min.js"><\/script>');</script>-->
|
||||
<script type="text/javascript" src="../fancybox/jquery.mousewheel-3.0.4.pack.js"></script>
|
||||
<script type="text/javascript" src="../fancybox/jquery.fancybox-1.3.4.pack.js"></script>
|
||||
<script type="text/javascript">
|
||||
$(document).ready(function() {
|
||||
$(".box").fancybox({
|
||||
'width' : '75%',
|
||||
'height' : '75%',
|
||||
'autoScale' : true,
|
||||
'transitionIn' : 'elastic',
|
||||
'transitionOut' : 'elastic',
|
||||
'type' : 'iframe'
|
||||
});
|
||||
});
|
||||
</script>
|
||||
</head>
|
||||
<body onload="if(document.login)document.login.pwdback_mail.focus();return false;">
|
||||
<table height="100%" width="100%">
|
||||
<tr>
|
||||
<td width="20%">
|
||||
|
||||
</td>
|
||||
<td width="60%">
|
||||
<div class="Header">
|
||||
<div>
|
||||
<div align="center">Passwort vergessen (Bachelor of Arts - Public Management) der Hochschulen Ludwigsburg und Kehl.</div>
|
||||
</div>
|
||||
</div>
|
||||
<div class="pat_list_box">
|
||||
<p>
|
||||
{if $index_error == '1'}
|
||||
<table width="70%" class="errorTable" align="center">
|
||||
<tr>
|
||||
<td>
|
||||
<img src="../templates/{$global_template}/images/pflichtfelder/achtung_gross.gif">
|
||||
</td>
|
||||
<td><b>Achtung!</b><br>
|
||||
{$index_error_text}
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
<br />
|
||||
{/if}
|
||||
<p align="center">Bitte geben Sie Ihre registrierte Emailadresse ein!
|
||||
<br>
|
||||
</p>
|
||||
<table align="center" border="0" bordercolordark="white" bordercolorlight="lightgray" cellspacing="0" width="96%" >
|
||||
<tr>
|
||||
<td width="200px" align="center" valign="middle">
|
||||
<img style="margin:10px;padding:10px;"src="../templates/{$global_template}/images/deputat_icon.svg" height="100">
|
||||
</td>
|
||||
<td align="left">
|
||||
<table width="100%">
|
||||
<form action=?action=reset2 method="POST" name="login">
|
||||
<tr>
|
||||
<td width="40%">
|
||||
<strong>Registrierte E-Mailadresse</strong>
|
||||
</td>
|
||||
<td>
|
||||
<input class="eingabe" name="pwdback_mail" tabindex="1">
|
||||
</td>
|
||||
</tr>
|
||||
|
||||
<tr>
|
||||
<td width="100%" colspan="2" align="center">
|
||||
|
||||
</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td width="40%">
|
||||
|
||||
</td>
|
||||
<td>
|
||||
<input type="submit" value="Abschicken">
|
||||
</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td width="100%" colspan="2" align="center">
|
||||
|
||||
</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<tr>
|
||||
</table>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
<p align="center">
|
||||
<!--
|
||||
<br />
|
||||
<br />
|
||||
<a class="squarebutton_blue box" href="?action=reset"><span>Passwort vergessen</span></a>
|
||||
-->
|
||||
</p>
|
||||
<br />
|
||||
<br />
|
||||
</div>
|
||||
</td>
|
||||
<td width="20%">
|
||||
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
</form>
|
||||
</body>
|
||||
</html>
|
||||
{/if}
|
||||
|
||||
|
||||
{if $action == 'reset2'}
|
||||
<html>
|
||||
<head>
|
||||
<title>Passwort vergessen (Bachelor of Arts - Public Management) der Hochschulen Ludwigsburg und Kehl.</title>
|
||||
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
|
||||
<meta http-equiv="Pragma" content="no-cache">
|
||||
<link rel="stylesheet" href="../templates/{$global_template}/css/styles_login.css" type="text/css">
|
||||
<style>
|
||||
.squarebutton_blue{
|
||||
width:200px;
|
||||
}
|
||||
</style>
|
||||
<link rel="stylesheet" type="text/css" href="fancybox/jquery.fancybox-1.3.4.css" media="screen" />
|
||||
<script type="text/javascript" src="../fancybox/jquery-1.5.1.min.js"></script>
|
||||
<!-- DATEI GIBTS NICHT <script>!window.jQuery && document.write('<script src="jquery-1.4.3.min.js"><\/script>');</script>-->
|
||||
<script type="text/javascript" src="../fancybox/jquery.mousewheel-3.0.4.pack.js"></script>
|
||||
<script type="text/javascript" src="../fancybox/jquery.fancybox-1.3.4.pack.js"></script>
|
||||
</head>
|
||||
<body>
|
||||
<table height="100%" width="100%">
|
||||
<tr>
|
||||
<td width="20%">
|
||||
|
||||
</td>
|
||||
<td width="60%">
|
||||
<div class="Header">
|
||||
<div>
|
||||
<div align="center">Passwort vergessen (Bachelor of Arts - Public Management) der Hochschulen Ludwigsburg und Kehl.</div>
|
||||
</div>
|
||||
</div>
|
||||
<div class="pat_list_box">
|
||||
<p align="center">
|
||||
Bitte prüfen Sie Ihren Email-Posteingang für die weiteren Schritte.
|
||||
</p>
|
||||
<br />
|
||||
<br />
|
||||
</div>
|
||||
</td>
|
||||
<td width="20%">
|
||||
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
</form>
|
||||
</body>
|
||||
</html>
|
||||
{/if}
|
23
templates/modern/praxisstelle/indexframe.html
Executable file
23
templates/modern/praxisstelle/indexframe.html
Executable file
@ -0,0 +1,23 @@
|
||||
<html>
|
||||
<head>
|
||||
<title>BPM Ausbildungsstellenverwaltung</title>
|
||||
<link type="text/css" rel="stylesheet" href="../css/styles_refill.css">
|
||||
</head>
|
||||
|
||||
<style type='text/css'>
|
||||
</style>
|
||||
|
||||
<frameset rows="103, 79%" cols="1*" border="0">
|
||||
<frame name="banner" scrolling="no" marginwidth="10" marginheight="0" namo_target_frame="detail" src="titel.php" noresize>
|
||||
<frameset rows="1*" cols="100%">
|
||||
<frame name="detail" scrolling="yes" marginwidth="0" marginheight="0" src="hauptframe.php">
|
||||
</frameset>
|
||||
<noframes>
|
||||
<body bgcolor="#FFFFFF" text="#000000" link="#0000FF" vlink="#800080" alink="#FF0000">
|
||||
|
||||
<p>To view this page correctly, you need a Web browser that supports frames.</p>
|
||||
|
||||
</body>
|
||||
</noframes>
|
||||
</frameset>
|
||||
</html>
|
68
templates/modern/praxisstelle/logout.html
Executable file
68
templates/modern/praxisstelle/logout.html
Executable file
@ -0,0 +1,68 @@
|
||||
{if $action == ''}
|
||||
<html>
|
||||
<head>
|
||||
<title>{$logout_titel}</title>
|
||||
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
|
||||
<link rel="stylesheet" href="../templates/{$global_template}/css/styles_refill.css" type="text/css">
|
||||
<style>
|
||||
.squarebutton_blue{
|
||||
width:100px;
|
||||
}
|
||||
</style>
|
||||
</head>
|
||||
<body onload="if(document.login)document.login.user.focus();return false;">
|
||||
|
||||
<table height="100%" width="100%">
|
||||
<tr>
|
||||
<td width="20%">
|
||||
|
||||
</td>
|
||||
<td width="60%">
|
||||
<div class="Header">
|
||||
<div>
|
||||
<div align="center">{$logout_titel}</div>
|
||||
</div>
|
||||
</div>
|
||||
<div class="pat_list_box">
|
||||
<p>
|
||||
<table align="center" border="0" bordercolordark="white" bordercolorlight="lightgray" cellspacing="0" width="96%" >
|
||||
<tr>
|
||||
<td width="200px" align="center" valign="middle">
|
||||
<img style="margin:10px;padding:10px;"src="../templates/{$global_template}/images/deputat_icon.svg" height="100">
|
||||
</td>
|
||||
<td align="left">
|
||||
<table width="100%">
|
||||
<form action=?action=anmeld method="POST" name="login">
|
||||
<tr>
|
||||
<td width="100%" align="center">
|
||||
<strong>Der Logout ist abgeschlossen!</strong>
|
||||
<br>
|
||||
Sie können das Fenster jetzt schließen.
|
||||
</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td width="100%" align="center">
|
||||
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
|
||||
<br />
|
||||
<br />
|
||||
</div>
|
||||
</td>
|
||||
<td width="20%">
|
||||
|
||||
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
|
||||
</form>
|
||||
|
||||
</body>
|
||||
</html>
|
||||
{/if}
|
30
templates/modern/praxisstelle/menu_verwaltung.html
Executable file
30
templates/modern/praxisstelle/menu_verwaltung.html
Executable file
@ -0,0 +1,30 @@
|
||||
{if $action == ''}
|
||||
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
|
||||
<html xmlns="http://www.w3.org/1999/xhtml">
|
||||
<head>
|
||||
<meta http-equiv="content-type" content="text/html; charset=utf-8" />
|
||||
<title>Menu</title>
|
||||
<link type="text/css" rel="stylesheet" href="../templates/{$global_template}/css/styles_refill.css" />
|
||||
<script type="text/javascript" src="../templates/{$global_template}/js/jquery.js"></script>
|
||||
<script type="text/javascript" src="../templates/{$global_template}/js/accordion.js"></script>
|
||||
<script type="text/javascript" src="livesearch/ajax.js"></script>
|
||||
<script type="text/javascript" src="livesearch/ajax-dynamic-list.js"></script>
|
||||
</head>
|
||||
<body bgcolor="white" text="black" link="blue" vlink="purple" alink="red" onload="if(document.searchform)document.searchform.patrone.focus(); return false;">
|
||||
|
||||
|
||||
<div class="accordion2">
|
||||
|
||||
<h3><span>Bewerbungen</span></h3>
|
||||
<ul>
|
||||
<li class="abstand"><a href="bewerbungen.php" target="eingabe_haupt"><span>Bewerbungen</span></a></li>
|
||||
<li class="abstand"><a href="archiv.php" target="eingabe_haupt"><span>Archiv</span></a></li>
|
||||
</ul>
|
||||
|
||||
|
||||
</div>
|
||||
|
||||
</body>
|
||||
|
||||
</html>
|
||||
{/if}
|
436
templates/modern/praxisstelle/profil.html
Executable file
436
templates/modern/praxisstelle/profil.html
Executable file
@ -0,0 +1,436 @@
|
||||
{if $action == ''}
|
||||
<html>
|
||||
<!DOCTYPE html>
|
||||
<html lang="en" class="no-js">
|
||||
<head>
|
||||
<title>Profil der Ausbildungsstellen BPM (Bachelor of Arts - Public Management) der Hochschulen Ludwigsburg und Kehl.</title>
|
||||
<link type="text/css" rel="stylesheet" href="../templates/{$global_template}/css/styles_refill.css">
|
||||
<link rel="stylesheet" href="../jquery/jquery-ui.css">
|
||||
<link rel="stylesheet" href="../jquery/jquery.timepicker.min.css">
|
||||
<script src="../jquery/jquery-1.12.4.js"></script>
|
||||
<script src="../jquery/jquery-ui.js"></script>
|
||||
<script src="../jquery/globalize.js"></script>
|
||||
<script src="../jquery/globalize.culture.de-DE.js"></script>
|
||||
<script src="../jquery/jquery.mousewheel.js"></script>
|
||||
<script src="../jquery/jquery.timepicker.min.js"></script>
|
||||
|
||||
<style type="text/css">
|
||||
.spinner {
|
||||
width: 112px;
|
||||
height: 15px;
|
||||
font-size: 12px !important;
|
||||
}
|
||||
</style>
|
||||
<script>
|
||||
$( function() {
|
||||
$( ".spinner" ).spinner({
|
||||
change: function (event, ui) {
|
||||
<!--calc_erm_78();-->
|
||||
},
|
||||
spin: function (event, ui) {
|
||||
<!--calc_erm_78();-->
|
||||
},
|
||||
start: function (event, ui) {
|
||||
<!--calc_erm_78();-->
|
||||
},
|
||||
stop: function (event, ui) {
|
||||
<!--calc_erm_78();-->
|
||||
},
|
||||
step: 1,
|
||||
numberFormat: "i",
|
||||
min:0,
|
||||
decimals:0
|
||||
});
|
||||
Globalize.culture( "de-DE" );
|
||||
} );
|
||||
|
||||
function trackKeys(evnt,regEx) {
|
||||
var keyCode = evnt.keyCode ? evnt.keyCode : evnt.which;
|
||||
return !!String.fromCharCode(keyCode).match(regEx);
|
||||
}
|
||||
//-->
|
||||
</script>
|
||||
<script type="text/javascript">
|
||||
$(function() {
|
||||
$(".datepicker").datepicker({
|
||||
prevText: '< zurück', prevStatus: '',
|
||||
prevJumpText: '<<', prevJumpStatus: '',
|
||||
changeMonth: true,
|
||||
changeYear: true,
|
||||
nextText: 'Vor >', nextStatus: '',
|
||||
nextJumpText: '>>', nextJumpStatus: '',
|
||||
currentText: 'Heute', currentStatus: '',
|
||||
todayText: 'Heute', todayStatus: '',
|
||||
clearText: '-', clearStatus: '',
|
||||
closeText: 'schließen', closeStatus: '',
|
||||
monthNames: ['Januar','Februar','März','April','Mai','Juni','Juli','August','September','Oktober','November','Dezember'],
|
||||
monthNamesShort: ['Jan','Feb','Mär','Apr','Mai','Jun','Jul','Aug','Sep','Okt','Nov','Dez'],
|
||||
dayNames: ['Sonntag','Montag','Dienstag','Mittwoch','Donnerstag','Freitag','Samstag'],
|
||||
dayNamesShort: ['So','Mo','Di','Mi','Do','Fr','Sa'],
|
||||
dayNamesMin: ['So','Mo','Di','Mi','Do','Fr','Sa'],
|
||||
weekHeader: 'Wo',
|
||||
weekStatus: 'Woche des Monats',
|
||||
showMonthAfterYear: false,
|
||||
showOn: 'focus',
|
||||
firstDay: 1,
|
||||
numberOfMonths : 1,
|
||||
yearRange: "c-5:+5",
|
||||
showButtonPanel : true,
|
||||
altField : "#datepicker_input",
|
||||
dateFormat : "dd.mm.yy",
|
||||
showWeek: true
|
||||
});
|
||||
$.datepicker._gotoToday = function(id) {
|
||||
$(id).datepicker('setDate', new Date()).datepicker('hide').blur();
|
||||
}
|
||||
|
||||
});
|
||||
</script>
|
||||
|
||||
<script type="text/javascript">
|
||||
$(document).ready(function(){
|
||||
$('input.timepicker').timepicker({
|
||||
timeFormat: 'HH:mm',
|
||||
interval: 30,
|
||||
minTime: '7',
|
||||
maxTime: '18:00',
|
||||
startTime: '7',
|
||||
dynamic: false,
|
||||
dropdown: true,
|
||||
scrollbar: true
|
||||
});
|
||||
});
|
||||
</script>
|
||||
<style>
|
||||
.desc{
|
||||
width:400px;
|
||||
}
|
||||
.StandardTable thead th{
|
||||
background: lightgray;
|
||||
border: 1px solid #656565;
|
||||
font-size:12px;
|
||||
font-family:Arial;
|
||||
padding-top:5px;
|
||||
padding-bottom:5px;
|
||||
padding-left:5px;
|
||||
padding-right:5px;
|
||||
}
|
||||
textarea{
|
||||
border: 1px solid #888;
|
||||
height: 6.7em;
|
||||
width: 48.5em;
|
||||
}
|
||||
select{
|
||||
width:630px;
|
||||
}
|
||||
.fieldset1 {
|
||||
border: 1px solid red;
|
||||
}
|
||||
.fieldset2 {
|
||||
border: ridge green;
|
||||
display: block;
|
||||
margin-left: 20px;
|
||||
margin-right: 20px;
|
||||
padding-top: 20px;
|
||||
padding-bottom: 20px;
|
||||
padding-left: 20px;
|
||||
padding-right: 20px;
|
||||
}
|
||||
.legend1 {
|
||||
display: block;
|
||||
padding-left: 20px;
|
||||
padding-right: 20px;
|
||||
border: none;
|
||||
font-size: 30px;
|
||||
}
|
||||
.button {
|
||||
font: bold 11px Arial;
|
||||
text-decoration: none;
|
||||
background-color: #EEEEEE;
|
||||
color: #333333;
|
||||
padding: 2px 6px 2px 6px;
|
||||
border-top: 1px solid #CCCCCC;
|
||||
border-right: 1px solid #333333;
|
||||
border-bottom: 1px solid #333333;
|
||||
border-left: 1px solid #CCCCCC;
|
||||
}
|
||||
</style>
|
||||
<link rel="stylesheet" type="text/css" href="css/component.css" />
|
||||
<script type="text/javascript">
|
||||
(function(e,t,n){
|
||||
var r=e.querySelectorAll("html")[0];
|
||||
r.className=r.className.replace(/(^|\s)no-js(\s|$)/,"$1js$2")
|
||||
})
|
||||
(document,window,0);
|
||||
</script>
|
||||
</head>
|
||||
<body>
|
||||
|
||||
<form action="?action=save" method='post' name='save'>
|
||||
|
||||
{if $dst_error == '1'}
|
||||
<table width="70%" class="errorTable" align="center">
|
||||
<tr>
|
||||
<td>
|
||||
<img src="../templates/{$global_template}/images/pflichtfelder/achtung_gross.gif">
|
||||
</td>
|
||||
<td><b>Achtung!</b><br>
|
||||
{$dst_error_text}
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
<br />
|
||||
{/if}
|
||||
<fieldset class="fieldset2">
|
||||
<legend>
|
||||
<b>Profil</b>
|
||||
</legend>
|
||||
<br />
|
||||
<br />
|
||||
<table cellspacing="0" cellpadding="0" width="100%" border="0" class="StandardTable">
|
||||
<tr>
|
||||
<td width="15%">
|
||||
<b>Art:</b>
|
||||
</td>
|
||||
<td>
|
||||
<select name="art" size="5">
|
||||
<option value="Gemeindeverwaltung" {if $dst_bezeichnung == 'Gemeindeverwaltung'} selected {/if}}>Gemeindeverwaltung</option>
|
||||
<option value="GVV" {if $dst_bezeichnung == 'GVV'} selected {/if}}>GVV</option>
|
||||
<option value="Landratsamt" {if $dst_bezeichnung == 'Landratsamt'} selected {/if}}>Landratsamt</option>
|
||||
<option value="Stadtverwaltung" {if $dst_bezeichnung == 'Stadtverwaltung'} selected {/if}}>Stadtverwaltung</option>
|
||||
<option value="VVG" {if $dst_bezeichnung == 'VVG'} selected {/if}}>VVG</option>
|
||||
</select>
|
||||
</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td width="15%">
|
||||
</td>
|
||||
<td>
|
||||
</td>
|
||||
<tr>
|
||||
<tr>
|
||||
<td width="15%">
|
||||
<b>Behördenname:</b>
|
||||
</td>
|
||||
<td>
|
||||
<input type="text" name="name" id="name" value="{$dst_name}" size="40">
|
||||
</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td width="15%">
|
||||
</td>
|
||||
<td>
|
||||
</td>
|
||||
<tr>
|
||||
<tr>
|
||||
<td width="15%">
|
||||
<b>Straße:</b>
|
||||
</td>
|
||||
<td>
|
||||
<input type="text" name="str" id="str" value="{$dst_str}" size="40">
|
||||
</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td width="15%">
|
||||
</td>
|
||||
<td>
|
||||
</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td width="15%">
|
||||
<b>PLZ / Ort:</b>
|
||||
</td>
|
||||
<td>
|
||||
<input type="text" name="plz" id="plz" value="{$dst_plz}" size="5"> <input type="text" name="ort" id="ort" value="{$dst_ort}" size="30">
|
||||
</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td width="15%">
|
||||
</td>
|
||||
<td>
|
||||
</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td width="15%">
|
||||
<b>Funktionsmailadresse:</b>
|
||||
</td>
|
||||
<td>
|
||||
<input type="text" name="mail" id="mail" value="{$dst_mail}" size="40">
|
||||
</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td width="15%">
|
||||
</td>
|
||||
<td>
|
||||
</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td width="15%">
|
||||
</td>
|
||||
<td>
|
||||
</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td width="15%" colspan="2"><b>Anmeldefrist für Onlinebewerbungen:</b>
|
||||
<br>Ist ein Datum gesetzt, wird die Ausbildungsstelle den Bewerbern nur innerhalb dieses Zeitraums für Onlinebewerbungen angeboten.
|
||||
</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td width="15%">
|
||||
<b>Anzeige von:</b>
|
||||
</td>
|
||||
<td>
|
||||
<input type="text" class="datepicker" name="gueltigvon" id="gueltigvon" value="{$dst_value_gueltigvon}" size="40">
|
||||
</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td width="15%">
|
||||
<b>Anzeige bis:</b>
|
||||
</td>
|
||||
<td>
|
||||
<input type="text" class="datepicker" name="gueltigbis" id="gueltigbis" value="{$dst_value_gueltigbis}" size="40">
|
||||
</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td width="15%">
|
||||
</td>
|
||||
<td>
|
||||
</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td width="15%">
|
||||
</td>
|
||||
<td>
|
||||
</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td colspan="2"width="15%">
|
||||
Neues Passwort erstellen:<br>
|
||||
</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td width="15%">
|
||||
<b>Passwort:</b>
|
||||
</td>
|
||||
<td>
|
||||
<input name="pwd_prx" id="pwd_prx" type="password" value="{$dst_pwd}" size="40">
|
||||
</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td width="15%">
|
||||
</td>
|
||||
<td>
|
||||
</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td width="15%">
|
||||
<b>Passwort wiederholen:</b>
|
||||
</td>
|
||||
<td>
|
||||
<input name="pwd_prx_wied" id="pwd_prx_wied" type="password" value="{$dst_pwd_wied}" size="40">
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
<br />
|
||||
<br />
|
||||
<br />
|
||||
<b><u>Informationen</u></b>
|
||||
<ul>
|
||||
<li>Bitte beachten Sie, dass alle Felder - außer Passwörter - Pflichtfelder sind.</li>
|
||||
<li>Wollen Sie das Passwort ändern, müssen die Felder "Passwort" und "Passwort wiederholen" identisch ausgefüllt sein</li>
|
||||
<li>Bitte geben Sie <b>KEINE</b> persönliche Mailadresse ein wie <u>vorname.nachname@...</u> sondern besser bspw. <u>ausbildung@...</u></li>
|
||||
<li>Der Anmeldename im Ausbildungsstellenportal ist die angegebene E-Mailadresse sowie das hier angegebene Passwort.</li>
|
||||
</ul>
|
||||
<p align='center'>
|
||||
<input type='submit' name='senden' value="Profil speichern">
|
||||
</p>
|
||||
<br />
|
||||
</fieldset>
|
||||
</form>
|
||||
</body>
|
||||
</html>
|
||||
{/if}
|
||||
|
||||
{if $action == 'save'}
|
||||
<html>
|
||||
<!DOCTYPE html>
|
||||
<html lang="en" class="no-js">
|
||||
<head>
|
||||
<title>Profil der Ausbildungsstellen BPM (Bachelor of Arts - Public Management) der Hochschulen Ludwigsburg und Kehl.</title>
|
||||
<link type="text/css" rel="stylesheet" href="../templates/{$global_template}/css/styles_refill.css">
|
||||
<style>
|
||||
.desc{
|
||||
width:400px;
|
||||
}
|
||||
.StandardTable thead th{
|
||||
background: lightgray;
|
||||
border: 1px solid #656565;
|
||||
font-size:12px;
|
||||
font-family:Arial;
|
||||
padding-top:5px;
|
||||
padding-bottom:5px;
|
||||
padding-left:5px;
|
||||
padding-right:5px;
|
||||
}
|
||||
textarea{
|
||||
border: 1px solid #888;
|
||||
height: 6.7em;
|
||||
width: 48.5em;
|
||||
}
|
||||
select{
|
||||
width:630px;
|
||||
}
|
||||
.fieldset1 {
|
||||
border: 1px solid red;
|
||||
}
|
||||
.fieldset2 {
|
||||
border: ridge green;
|
||||
display: block;
|
||||
margin-left: 20px;
|
||||
margin-right: 20px;
|
||||
padding-top: 20px;
|
||||
padding-bottom: 20px;
|
||||
padding-left: 20px;
|
||||
padding-right: 20px;
|
||||
}
|
||||
.legend1 {
|
||||
display: block;
|
||||
padding-left: 20px;
|
||||
padding-right: 20px;
|
||||
border: none;
|
||||
font-size: 30px;
|
||||
}
|
||||
.button {
|
||||
font: bold 11px Arial;
|
||||
text-decoration: none;
|
||||
background-color: #EEEEEE;
|
||||
color: #333333;
|
||||
padding: 2px 6px 2px 6px;
|
||||
border-top: 1px solid #CCCCCC;
|
||||
border-right: 1px solid #333333;
|
||||
border-bottom: 1px solid #333333;
|
||||
border-left: 1px solid #CCCCCC;
|
||||
}
|
||||
</style>
|
||||
<link rel="stylesheet" type="text/css" href="css/component.css" />
|
||||
<script type="text/javascript">
|
||||
(function(e,t,n){
|
||||
var r=e.querySelectorAll("html")[0];
|
||||
r.className=r.className.replace(/(^|\s)no-js(\s|$)/,"$1js$2")
|
||||
})
|
||||
(document,window,0);
|
||||
</script>
|
||||
</head>
|
||||
<body>
|
||||
<fieldset>
|
||||
<legend>
|
||||
<b>Profil bearbeitet</b>
|
||||
</legend>
|
||||
<br>
|
||||
Das Profil wurde bearbeitet.<br>
|
||||
<br>
|
||||
</fieldset>
|
||||
</form>
|
||||
</body>
|
||||
</html>
|
||||
{/if}
|
440
templates/modern/praxisstelle/register.html
Executable file
440
templates/modern/praxisstelle/register.html
Executable file
@ -0,0 +1,440 @@
|
||||
{if $action == ''}
|
||||
<html>
|
||||
<head>
|
||||
<title>Registrierung der Ausbildungsstellen BPM (Bachelor of Arts - Public Management) der Hochschulen Ludwigsburg und Kehl.</title>
|
||||
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
|
||||
<meta http-equiv="Pragma" content="no-cache">
|
||||
<link rel="stylesheet" href="../templates/{$global_template}/css/styles_login.css" type="text/css">
|
||||
<style>
|
||||
.squarebutton_blue{
|
||||
width:100px;
|
||||
}
|
||||
.eingabe{
|
||||
width:350px;
|
||||
}
|
||||
</style>
|
||||
<link rel="stylesheet" type="text/css" href="fancybox/jquery.fancybox-1.3.4.css" media="screen" />
|
||||
<script type="text/javascript" src="../fancybox/jquery-1.5.1.min.js"></script>
|
||||
<!-- DATEI GIBTS NICHT <script>!window.jQuery && document.write('<script src="jquery-1.4.3.min.js"><\/script>');</script>-->
|
||||
<script type="text/javascript" src="../fancybox/jquery.mousewheel-3.0.4.pack.js"></script>
|
||||
<script type="text/javascript" src="../fancybox/jquery.fancybox-1.3.4.pack.js"></script>
|
||||
<script type="text/javascript">
|
||||
$(document).ready(function() {
|
||||
$(".box").fancybox({
|
||||
'width' : '75%',
|
||||
'height' : '75%',
|
||||
'autoScale' : true,
|
||||
'transitionIn' : 'elastic',
|
||||
'transitionOut' : 'elastic',
|
||||
'type' : 'iframe'
|
||||
});
|
||||
});
|
||||
</script>
|
||||
</head>
|
||||
<body onload="if(document.login)document.login.username.focus();return false;">
|
||||
<table height="100%" width="100%">
|
||||
<tr>
|
||||
<td width="20%">
|
||||
|
||||
</td>
|
||||
<td width="60%">
|
||||
<div class="Header">
|
||||
<div>
|
||||
<div align="center">Registrierung der Ausbildungsstellen BPM (Bachelor of Arts - Public Management) der Hochschulen Ludwigsburg und Kehl.</div>
|
||||
</div>
|
||||
</div>
|
||||
<div class="pat_list_box">
|
||||
<p>
|
||||
{if $index_error == '1'}
|
||||
<table width="70%" class="errorTable" align="center">
|
||||
<tr>
|
||||
<td>
|
||||
<img src="../templates/{$global_template}/images/pflichtfelder/achtung_gross.gif">
|
||||
</td>
|
||||
<td><b>Achtung!</b><br>
|
||||
{$index_error_text}
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
<br />
|
||||
{/if}
|
||||
<p align="center">Herzlich willkommen, bitte registrieren Sie Ihre Ausbildungsstelle für das Einführungspraktikum im Studiengang Bachelor Public Management (BPM).<br>
|
||||
Geben Sie dazu Ihre Zugangsdaten aus der E-Mail ein.
|
||||
<br>
|
||||
<br>
|
||||
Sollten Sie sich bereits für <b><u><i>"Bachelor of Arts - Public Management"</i></u></b> registriert haben, dann melden Sie sich mit der hinterlegten Mailadresse<br>und <b><u>ihrem</u></b> Passwort im Ausbildungsstellenportal: <a href='https://www.hs-ludwigsburg.de/kurs/bpm/praxisstelle/'>https://www.hs-ludwigsburg.de/kurs/bpm/praxisstelle</a> an.
|
||||
</p>
|
||||
<table align="center" border="0" bordercolordark="white" bordercolorlight="lightgray" cellspacing="0" width="96%" >
|
||||
<tr>
|
||||
<td width="200px" align="center" valign="middle">
|
||||
<img style="margin:10px;padding:10px;"src="../templates/{$global_template}/images/deputat_icon.svg" height="100">
|
||||
</td>
|
||||
<td align="left">
|
||||
<form action=?action=anmeld method="POST" name="login">
|
||||
<table width="100%" border="0">
|
||||
<tr>
|
||||
<td width="20%">
|
||||
<strong>Benutzername:</strong>
|
||||
</td>
|
||||
<td>
|
||||
<input class="eingabe" name="username" value='{$reg_uid}' tabindex="1">
|
||||
</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td width="20%">
|
||||
<strong>Passwort:</strong>
|
||||
</td>
|
||||
<td>
|
||||
<input class="eingabe" type='password' value='{$reg_tan}' name="password" tabindex="2">
|
||||
</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td width="100%" colspan="2" align="center">
|
||||
|
||||
</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td width="20%">
|
||||
|
||||
</td>
|
||||
<td>
|
||||
<input type="submit" value="Login">
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
<p align="center">
|
||||
<!--
|
||||
<br />
|
||||
<br />
|
||||
<a class="squarebutton_blue box" href="register.php"><span>Registrierung</span></a>
|
||||
-->
|
||||
</p>
|
||||
<br />
|
||||
<br />
|
||||
</div>
|
||||
</td>
|
||||
<td width="20%">
|
||||
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
</form>
|
||||
</body>
|
||||
</html>
|
||||
{/if}
|
||||
|
||||
{if $action == 'anmeld'}
|
||||
<html>
|
||||
<!DOCTYPE html>
|
||||
<html lang="en" class="no-js">
|
||||
<head>
|
||||
<title>Registrierung der Ausbildungsstellen BPM (Bachelor of Arts - Public Management) der Hochschulen Ludwigsburg und Kehl.</title>
|
||||
<link type="text/css" rel="stylesheet" href="../templates/{$global_template}/css/styles_refill.css">
|
||||
<style>
|
||||
.desc{
|
||||
width:400px;
|
||||
}
|
||||
.StandardTable thead th{
|
||||
background: lightgray;
|
||||
border: 1px solid #656565;
|
||||
font-size:12px;
|
||||
font-family:Arial;
|
||||
padding-top:5px;
|
||||
padding-bottom:5px;
|
||||
padding-left:5px;
|
||||
padding-right:5px;
|
||||
}
|
||||
textarea{
|
||||
border: 1px solid #888;
|
||||
height: 6.7em;
|
||||
width: 48.5em;
|
||||
}
|
||||
select{
|
||||
width:630px;
|
||||
}
|
||||
.fieldset1 {
|
||||
border: 1px solid red;
|
||||
}
|
||||
.fieldset2 {
|
||||
border: ridge green;
|
||||
display: block;
|
||||
margin-left: 20px;
|
||||
margin-right: 20px;
|
||||
padding-top: 20px;
|
||||
padding-bottom: 20px;
|
||||
padding-left: 20px;
|
||||
padding-right: 20px;
|
||||
}
|
||||
.legend1 {
|
||||
display: block;
|
||||
padding-left: 20px;
|
||||
padding-right: 20px;
|
||||
border: none;
|
||||
font-size: 30px;
|
||||
}
|
||||
.button {
|
||||
font: bold 11px Arial;
|
||||
text-decoration: none;
|
||||
background-color: #EEEEEE;
|
||||
color: #333333;
|
||||
padding: 2px 6px 2px 6px;
|
||||
border-top: 1px solid #CCCCCC;
|
||||
border-right: 1px solid #333333;
|
||||
border-bottom: 1px solid #333333;
|
||||
border-left: 1px solid #CCCCCC;
|
||||
}
|
||||
</style>
|
||||
<link rel="stylesheet" type="text/css" href="css/component.css" />
|
||||
<script type="text/javascript">
|
||||
(function(e,t,n){
|
||||
var r=e.querySelectorAll("html")[0];
|
||||
r.className=r.className.replace(/(^|\s)no-js(\s|$)/,"$1js$2")
|
||||
})
|
||||
(document,window,0);
|
||||
</script>
|
||||
</head>
|
||||
<body>
|
||||
|
||||
<form action="?action=save" method='post' name='save'>
|
||||
|
||||
{if $dst_error == '1'}
|
||||
<table width="70%" class="errorTable" align="center">
|
||||
<tr>
|
||||
<td>
|
||||
<img src="../templates/{$global_template}/images/pflichtfelder/achtung_gross.gif">
|
||||
</td>
|
||||
<td><b>Achtung!</b><br>
|
||||
{$dst_error_text}
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
<br />
|
||||
{/if}
|
||||
<fieldset>
|
||||
<legend>
|
||||
<b>Ausbildungsstelle für das Einführungspraktikum registrieren</b>
|
||||
</legend>
|
||||
<br />
|
||||
<br />
|
||||
<table cellspacing="0" cellpadding="0" width="100%" border="0" class="StandardTable">
|
||||
<tr>
|
||||
<td width="15%">
|
||||
<b>Art:</b>
|
||||
</td>
|
||||
<td>
|
||||
<select name="art" size="5">
|
||||
<option value="Gemeindeverwaltung" {if $dst_bezeichnung == 'Gemeindeverwaltung'} selected {/if}}>Gemeindeverwaltung</option>
|
||||
<option value="GVV" {if $dst_bezeichnung == 'GVV'} selected {/if}}>GVV</option>
|
||||
<option value="Landratsamt" {if $dst_bezeichnung == 'Landratsamt'} selected {/if}}>Landratsamt</option>
|
||||
<option value="Stadtverwaltung" {if $dst_bezeichnung == 'Stadtverwaltung'} selected {/if}}>Stadtverwaltung</option>
|
||||
<option value="VVG" {if $dst_bezeichnung == 'VVG'} selected {/if}}>VVG</option>
|
||||
</select>
|
||||
</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td width="15%">
|
||||
</td>
|
||||
<td>
|
||||
</td>
|
||||
<tr>
|
||||
<tr>
|
||||
<td width="15%">
|
||||
<b>Behördenname:</b>
|
||||
</td>
|
||||
<td>
|
||||
<input type="text" name="name" id="name" value="{$dst_name}" size="40">
|
||||
</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td width="15%">
|
||||
</td>
|
||||
<td>
|
||||
</td>
|
||||
<tr>
|
||||
<tr>
|
||||
<td width="15%">
|
||||
<b>Straße:</b>
|
||||
</td>
|
||||
<td>
|
||||
<input type="text" name="str" id="str" value="{$dst_str}" size="40">
|
||||
</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td width="15%">
|
||||
</td>
|
||||
<td>
|
||||
</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td width="15%">
|
||||
<b>PLZ / Ort:</b>
|
||||
</td>
|
||||
<td>
|
||||
<input type="text" name="plz" id="plz" value="{$dst_plz}" size="5"> <input type="text" name="ort" id="ort" value="{$dst_ort}" size="30">
|
||||
</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td width="15%">
|
||||
</td>
|
||||
<td>
|
||||
</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td width="15%">
|
||||
<b>Funktionsmailadresse:</b>
|
||||
</td>
|
||||
<td>
|
||||
<input type="text" name="mail" id="mail" value="{$dst_mail}" size="40">
|
||||
</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td width="15%">
|
||||
</td>
|
||||
<td>
|
||||
</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td width="15%">
|
||||
</td>
|
||||
<td>
|
||||
</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td colspan="2"width="15%">
|
||||
Geben Sie ein Passwort an, um sich im Ausbildungsstellenportal anmelden zu können.<br>
|
||||
Damit haben Sie Zugang zu den Bewerberunterlagen:
|
||||
</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td width="15%">
|
||||
<b>Passwort:</b>
|
||||
</td>
|
||||
<td>
|
||||
<input name="pwd_prx" id="pwd_prx" type="password" value="{$dst_pwd}" size="40">
|
||||
</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td width="15%">
|
||||
</td>
|
||||
<td>
|
||||
</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td width="15%">
|
||||
<b>Passwort wiederholen:</b>
|
||||
</td>
|
||||
<td>
|
||||
<input name="pwd_prx_wied" id="pwd_prx_wied" type="password" value="{$dst_pwd_wied}" size="40">
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
<br />
|
||||
<br />
|
||||
<br />
|
||||
<b><u>Informationen</u></b>
|
||||
<ul>
|
||||
<li>Bitte beachten Sie, dass alle Felder Pflichtfelder sind.</li>
|
||||
<li>Bitte geben Sie <b>KEINE</b> persönliche Mailadresse ein wie <u>vorname.nachname@...</u> sondern besser bspw. <u>ausbildung@...</u></li>
|
||||
<li>Der Anmeldename im Ausbildungsstellenportal ist die angegebene E-Mailadresse sowie das hier angegebene Passwort.</li>
|
||||
</ul>
|
||||
<p align='center'>
|
||||
<input type='submit' name='senden' value="Ausbildungsstelle registrieren">
|
||||
</p>
|
||||
<br />
|
||||
</fieldset>
|
||||
</form>
|
||||
</body>
|
||||
</html>
|
||||
{/if}
|
||||
|
||||
{if $action == 'save'}
|
||||
<html>
|
||||
<!DOCTYPE html>
|
||||
<html lang="en" class="no-js">
|
||||
<head>
|
||||
<title>Registrierung der Ausbildungsstellen BPM (Bachelor of Arts - Public Management) der Hochschulen Ludwigsburg und Kehl.</title>
|
||||
<link type="text/css" rel="stylesheet" href="../templates/{$global_template}/css/styles_refill.css">
|
||||
<style>
|
||||
.desc{
|
||||
width:400px;
|
||||
}
|
||||
.StandardTable thead th{
|
||||
background: lightgray;
|
||||
border: 1px solid #656565;
|
||||
font-size:12px;
|
||||
font-family:Arial;
|
||||
padding-top:5px;
|
||||
padding-bottom:5px;
|
||||
padding-left:5px;
|
||||
padding-right:5px;
|
||||
}
|
||||
textarea{
|
||||
border: 1px solid #888;
|
||||
height: 6.7em;
|
||||
width: 48.5em;
|
||||
}
|
||||
select{
|
||||
width:630px;
|
||||
}
|
||||
.fieldset1 {
|
||||
border: 1px solid red;
|
||||
}
|
||||
.fieldset2 {
|
||||
border: ridge green;
|
||||
display: block;
|
||||
margin-left: 20px;
|
||||
margin-right: 20px;
|
||||
padding-top: 20px;
|
||||
padding-bottom: 20px;
|
||||
padding-left: 20px;
|
||||
padding-right: 20px;
|
||||
}
|
||||
.legend1 {
|
||||
display: block;
|
||||
padding-left: 20px;
|
||||
padding-right: 20px;
|
||||
border: none;
|
||||
font-size: 30px;
|
||||
}
|
||||
.button {
|
||||
font: bold 11px Arial;
|
||||
text-decoration: none;
|
||||
background-color: #EEEEEE;
|
||||
color: #333333;
|
||||
padding: 2px 6px 2px 6px;
|
||||
border-top: 1px solid #CCCCCC;
|
||||
border-right: 1px solid #333333;
|
||||
border-bottom: 1px solid #333333;
|
||||
border-left: 1px solid #CCCCCC;
|
||||
}
|
||||
</style>
|
||||
<link rel="stylesheet" type="text/css" href="css/component.css" />
|
||||
<script type="text/javascript">
|
||||
(function(e,t,n){
|
||||
var r=e.querySelectorAll("html")[0];
|
||||
r.className=r.className.replace(/(^|\s)no-js(\s|$)/,"$1js$2")
|
||||
})
|
||||
(document,window,0);
|
||||
</script>
|
||||
</head>
|
||||
<body>
|
||||
<fieldset>
|
||||
<legend>
|
||||
<b>Ausbildungsstelle registriert</b>
|
||||
</legend>
|
||||
<br>
|
||||
Die Ausbildungsstelle wurde registriert<br>
|
||||
Sie können sich nun mit ihrer Mailadresse und dem angebenen Passwort im Ausbildungsstellenportal anmelden:<br>
|
||||
<br>
|
||||
<a href='https://www.hs-ludwigsburg.de/kurs/bpm/praxisstelle/index.php'>https://www.hs-ludwigsburg.de/kurs/bpm/praxisstelle/index.php</a>
|
||||
<br><br>
|
||||
Die Registrierung ist abgeschlossen, das Fenster kann geschlossen werden.<br>
|
||||
<br>
|
||||
</fieldset>
|
||||
</form>
|
||||
</body>
|
||||
</html>
|
||||
{/if}
|
146
templates/modern/praxisstelle/resetpassword.html
Executable file
146
templates/modern/praxisstelle/resetpassword.html
Executable file
@ -0,0 +1,146 @@
|
||||
{if $action == ''}
|
||||
<html>
|
||||
<head>
|
||||
<title>Neues Passwort BPM (Bachelor of Arts - Public Management) der Hochschulen Ludwigsburg und Kehl.</title>
|
||||
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
|
||||
<meta http-equiv="Pragma" content="no-cache">
|
||||
<link rel="stylesheet" href="../templates/{$global_template}/css/styles_login.css" type="text/css">
|
||||
<style>
|
||||
.squarebutton_blue{
|
||||
width:100px;
|
||||
}
|
||||
</style>
|
||||
<link rel="stylesheet" type="text/css" href="fancybox/jquery.fancybox-1.3.4.css" media="screen" />
|
||||
<script type="text/javascript" src="../fancybox/jquery-1.5.1.min.js"></script>
|
||||
<!-- DATEI GIBTS NICHT <script>!window.jQuery && document.write('<script src="jquery-1.4.3.min.js"><\/script>');</script>-->
|
||||
<script type="text/javascript" src="../fancybox/jquery.mousewheel-3.0.4.pack.js"></script>
|
||||
<script type="text/javascript" src="../fancybox/jquery.fancybox-1.3.4.pack.js"></script>
|
||||
<script type="text/javascript">
|
||||
$(document).ready(function() {
|
||||
$(".box").fancybox({
|
||||
'width' : '75%',
|
||||
'height' : '75%',
|
||||
'autoScale' : true,
|
||||
'transitionIn' : 'elastic',
|
||||
'transitionOut' : 'elastic',
|
||||
'type' : 'iframe'
|
||||
});
|
||||
});
|
||||
</script>
|
||||
</head>
|
||||
<body onload="if(document.login)document.pwback.resetpwd.focus();return false;">
|
||||
<table height="100%" width="100%">
|
||||
<tr>
|
||||
<td width="20%">
|
||||
|
||||
</td>
|
||||
<td width="60%">
|
||||
<div class="Header">
|
||||
<div>
|
||||
<div align="center">Neues Passwort BPM (Bachelor of Arts - Public Management) der Hochschulen Ludwigsburg und Kehl.</div>
|
||||
</div>
|
||||
</div>
|
||||
<div class="pat_list_box">
|
||||
<p>
|
||||
{if $index_error == '1'}
|
||||
<table width="70%" class="errorTable" align="center">
|
||||
<tr>
|
||||
<td>
|
||||
<img src="../templates/{$global_template}/images/pflichtfelder/achtung_gross.gif">
|
||||
</td>
|
||||
<td><b>Achtung!</b><br>
|
||||
{$index_error_text}
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
<br />
|
||||
{/if}
|
||||
<p align="center">Bitte geben Sie hier das neue Passwort für Ihren Account ein!<br>
|
||||
|
||||
</p>
|
||||
<table align="center" border="0" bordercolordark="white" bordercolorlight="lightgray" cellspacing="0" width="96%" >
|
||||
<tr>
|
||||
<td width="200px" align="center" valign="middle">
|
||||
<img style="margin:10px;padding:10px;"src="../templates/{$global_template}/images/deputat_icon.svg" height="100">
|
||||
</td>
|
||||
<td align="left">
|
||||
<form action=?action=pwback method="POST" name="pwback">
|
||||
<table width="100%" border="0">
|
||||
<tr>
|
||||
<td width="20%">
|
||||
<strong>Passwort:</strong>
|
||||
</td>
|
||||
<td>
|
||||
<input class="eingabe" type="password" name="resetpwd" tabindex="1">
|
||||
</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td width="20%">
|
||||
<strong>Passwort wiederholen:</strong>
|
||||
</td>
|
||||
<td>
|
||||
<input class="eingabe" type="password" name="resetpwd_wied" tabindex="2">
|
||||
</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td width="100%" colspan="2" align="center">
|
||||
|
||||
</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td width="20%">
|
||||
|
||||
</td>
|
||||
<td>
|
||||
<input type="submit" value="Abschicken">
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
<p align="center">
|
||||
<!--
|
||||
<br />
|
||||
<br />
|
||||
<a class="squarebutton_blue box" href="register.php"><span>Registrierung</span></a>
|
||||
-->
|
||||
</p>
|
||||
<br />
|
||||
<br />
|
||||
</div>
|
||||
</td>
|
||||
<td width="20%">
|
||||
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
</form>
|
||||
</body>
|
||||
</html>
|
||||
{/if}
|
||||
|
||||
{if $action == 'pwback'}
|
||||
<html>
|
||||
<!DOCTYPE html>
|
||||
<html lang="en" class="no-js">
|
||||
<head>
|
||||
<title>Passwort zurückgesetzt BPM (Bachelor of Arts - Public Management) der Hochschulen Ludwigsburg und Kehl.</title>
|
||||
<link type="text/css" rel="stylesheet" href="../templates/{$global_template}/css/styles_refill.css">
|
||||
</head>
|
||||
<body>
|
||||
<fieldset>
|
||||
<legend>
|
||||
<b>Passwort zurückgesetzt</b>
|
||||
</legend>
|
||||
<br />
|
||||
<br />
|
||||
<p align="center">
|
||||
Das Passwort wurde zurückgesetzt.<br>
|
||||
Sie können sich nun einloggen: <a href="index.php">Ausbildungsstellenportal</a>
|
||||
</p>
|
||||
</fieldset>
|
||||
</form>
|
||||
</body>
|
||||
</html>
|
||||
{/if}
|
81
templates/modern/praxisstelle/titel.html
Executable file
81
templates/modern/praxisstelle/titel.html
Executable file
@ -0,0 +1,81 @@
|
||||
<html>
|
||||
<head>
|
||||
<title>Testseite</title>
|
||||
<meta name="generator" content="Namo WebEditor">
|
||||
<base target="detail">
|
||||
<link type="text/css" rel="stylesheet" href="../templates/{$global_template}/css/styles_refill.css">
|
||||
|
||||
|
||||
<script type="text/javascript" src="../ajaxtabs/ajaxtabs.js">
|
||||
|
||||
/***********************************************
|
||||
* Ajax Tabs Content script v2.2- <20> Dynamic Drive DHTML code library (www.dynamicdrive.com)
|
||||
* This notice MUST stay intact for legal use
|
||||
* Visit Dynamic Drive at http://www.dynamicdrive.com/ for full source code
|
||||
***********************************************/
|
||||
|
||||
</script>
|
||||
|
||||
|
||||
</head>
|
||||
|
||||
<style type="text/css">
|
||||
body {
|
||||
background-image: url("templates/{$global_template}/images/backgr/ground.png");
|
||||
background-repeat: repeat-x;
|
||||
background-position: left -1614px;
|
||||
}
|
||||
</style>
|
||||
|
||||
|
||||
<body>
|
||||
|
||||
<table width="100%" cellpadding="0" cellspacing="0" border="0">
|
||||
<tr>
|
||||
<td width="80%" height="60" valign="top">
|
||||
<h2>BPM Ausbildungsstellenportal: {$prx_stellenbezeichnung}</h2>
|
||||
</td>
|
||||
<td width="20%" valign="top">
|
||||
<p align="right"><a class="navbar" href="logout.php" target="_parent">Logout</a></p>
|
||||
</td>
|
||||
<td width="25"> </td>
|
||||
</tr>
|
||||
</table>
|
||||
|
||||
<div id="filltab" class="animatedtabs">
|
||||
<ul>
|
||||
<li><a href="hauptframe.php" selected><span><img src="../templates/{$global_template}/images/home.svg" width="20"></span></a></li>
|
||||
<li><a href="verwaltung_frame.php"><span>Ausbildungsstellenverwaltung</span></a></li>
|
||||
<li><a href="profil.php"><span>Profil</span></a></li>
|
||||
|
||||
<!--
|
||||
{if $titel_admin == '1'}
|
||||
<li><a href="admin_frame.php" ><span>Adminbereich</span></a></li>
|
||||
{/if}
|
||||
|
||||
{if $titel_ausschuss == '1'}
|
||||
<li><a href="ausschuss_frame.php" ><span>Ausschussbereich</span></a></li>
|
||||
{/if}
|
||||
|
||||
{if $titel_beteiligte == '1'}
|
||||
<li><a href="beteiligte_frame.php" ><span>Beteiligtenbereich</span></a></li>
|
||||
{/if}
|
||||
|
||||
{if $titel_gutachter == '1'}
|
||||
<li><a href="gutachter_frame.php" ><span>Gutachterbereich</span></a></li>
|
||||
{/if}
|
||||
-->
|
||||
<!--
|
||||
<li><a href="link.php"><span>Gutachterbereich</span></a></li>
|
||||
<li><a href="link.php"><span>Beteiligtenbereich</span></a></li>
|
||||
<li><a href="link.php"><span>Ausschussbereich</span></a></li>
|
||||
-->
|
||||
</ul>
|
||||
</div>
|
||||
|
||||
|
||||
|
||||
|
||||
</body>
|
||||
|
||||
</html>
|
20
templates/modern/praxisstelle/verwaltung_frame.html
Executable file
20
templates/modern/praxisstelle/verwaltung_frame.html
Executable file
@ -0,0 +1,20 @@
|
||||
<html>
|
||||
<head>
|
||||
<title>Deputatverwaltung</title>
|
||||
<link type="text/css" rel="stylesheet" href="../css/styles_refill.css">
|
||||
</head>
|
||||
|
||||
|
||||
<frameset rows="1*" cols="250, 76%" border="0">
|
||||
<frame name="menu_eingabe" scrolling="auto" marginwidth="10" marginheight="14" src="menu_verwaltung.php">
|
||||
<frame name="eingabe_haupt" scrolling="yes" marginwidth="0" marginheight="0" src="bewerbungen.php">
|
||||
</frameset>
|
||||
<noframes>
|
||||
<body bgcolor="#FFFFFF" text="#000000" link="#0000FF" vlink="#800080" alink="#FF0000">
|
||||
|
||||
<p>To view this page correctly, you need a Web browser that supports frames.</p>
|
||||
|
||||
</body>
|
||||
</noframes>
|
||||
</frameset>
|
||||
</html>
|
Reference in New Issue
Block a user