styling for edit and add subpage
This commit is contained in:
@@ -27,18 +27,26 @@
|
||||
?>
|
||||
|
||||
<body>
|
||||
<div class="headline">
|
||||
<h2>Station bearbeiten</h2>
|
||||
</div>
|
||||
<div>
|
||||
<form method="post">
|
||||
<label for="station_name">Stations Namen:</label>
|
||||
<input type="text" name="station_name" <?php echo "value=\"" . $row['name'] . "\"" ?> /><br>
|
||||
<label for="station_pos">Stations Standort:</label>
|
||||
<input type="text" name="station_pos" <?php echo "value=\"" . $row['standort'] . "\""?>/><br>
|
||||
<input type="hidden" name="station_id" <?php echo "value=\"" . $row ['s_id'] . "\""?>/>
|
||||
<input type="submit" value="Speichern"/>
|
||||
</form>
|
||||
<div class="center">
|
||||
<div class="headline">
|
||||
<h2>Station bearbeiten</h2>
|
||||
</div>
|
||||
<div class="form_div">
|
||||
<form method="post">
|
||||
<div class="txt_field">
|
||||
<input type="text" name="station_name" <?php echo "value=\"" . $row['name'] . "\"" ?> />
|
||||
<span></span>
|
||||
<label for="station_name">Stations Namen:</label>
|
||||
</div>
|
||||
<div class="txt_field">
|
||||
<input type="text" name="station_pos" <?php echo "value=\"" . $row['standort'] . "\""?>/>
|
||||
<span></span>
|
||||
<label for="station_pos">Stations Standort:</label>
|
||||
</div>
|
||||
<input type="hidden" name="station_id" <?php echo "value=\"" . $row ['s_id'] . "\""?>/>
|
||||
<input type="submit" value="Speichern" class="btn-confirm"/>
|
||||
</form>
|
||||
</div>
|
||||
</div>
|
||||
</body>
|
||||
|
||||
|
||||
Reference in New Issue
Block a user