Skip to content
Snippets Groups Projects
startseite.php 1.61 KiB
Newer Older
<div class="form-group">
	<label><?php echo GLOBALSETTING['SETTING']['STARTV']['VERDI'];?></label>
	<input type="text" class="form-control" name="verdienst_start" value="<?php echo $grundconfig->verdienst_start;?>">
	<small class="form-text text-muted"><?php echo GLOBALSETTING['SETTING']['STARTV']['VERDIN'];?></small>
</div>

<div class="form-group">
	<label><?php echo GLOBALSETTING['SETTING']['STARTV']['RELOAD'];?></label>
	<input type="text" class="form-control" name="reload_start" value="<?php echo $grundconfig->reload_start;?>">
	<small class="form-text text-muted"><?php echo GLOBALSETTING['SETTING']['STARTV']['RELOADN'];?></small>
</div>

<div class="form-group">
	<label><?php echo GLOBALSETTING['SETTING']['STARTV']['LOG'];?></label>
	<select name="start_log" class="form-control">
		<option value="0" <?php if($grundconfig->start_log == 0) echo 'selected="selected"';?>>deaktiviert</option>
		<option value="1" <?php if($grundconfig->start_log == 1) echo 'selected="selected"';?>>aktiviert</option>
	</select>
	<small class="form-text text-muted"><?php echo GLOBALSETTING['SETTING']['STARTV']['POPN'];?></small>
</div>

<div class="form-group">
	<label><?php echo GLOBALSETTING['SETTING']['STARTV']['POP'];?></label>
	<select name="popup_start" class="form-control">
		<option value="0" <?php if($grundconfig->popup_start == 0) echo 'selected="selected"';?>>deaktiviert</option>
		<option value="1" <?php if($grundconfig->popup_start == 1) echo 'selected="selected"';?>>aktiviert</option>
	</select>
	<small class="form-text text-muted"><?php echo GLOBALSETTING['SETTING']['STARTV']['POPN'];?></small>
</div>