Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 3 additions & 2 deletions baps-ui.php
Original file line number Diff line number Diff line change
Expand Up @@ -156,7 +156,6 @@ function forms() {
.form-style li > label{
display: block;
float: left;
margin-top: -19px;
background: #FFFFFF;
height: 14px;
padding: 2px 5px 2px 5px;
Expand Down Expand Up @@ -196,13 +195,15 @@ function forms() {
.form-style input[type="submit"]{
background: #1d9188;
border: none;
margin-left: 30%;
padding: 10px 20px 10px 20px;
border-bottom: 3px solid #1d9188;
border-radius: 3px;
color: #FFFFFF;
}
.form-style input[type="submit"]:hover{
background: #dea514;
margin-left: 30%;
border-bottom: 3px solid #dea514;
color:#FFFFFF;
}
Expand Down Expand Up @@ -238,7 +239,7 @@ function check() {
$html = $html.'<li>';
$html = $html.'<label for="name">Name</label>';
$html = $html.sprintf('<input type="text" name="full_name" value="%s" maxlength="100">', $full_name);
$html = $html.'<span>Dein Name</span>';
$html = $html.'<span>Dein Vor- und Nachname</span>';
$html = $html.'</li>';
$html = $html.'<li>';
$html = $html.'<label for="email">E-mail</label>';
Expand Down