3
0
Fork 0
mirror of https://github.com/fsr/eseeva synced 2025-01-18 16:01:41 +01:00

adds color

nothing fancy, just bootstrap stuff
This commit is contained in:
Lucas Woltmann 2016-08-01 15:08:21 +02:00
parent 3646c27af4
commit 3637b0c7b9
5 changed files with 13 additions and 13 deletions

View file

@ -19,8 +19,9 @@ input[type="checkbox"]
input[type="submit"]
{
background-color:#E0E0FF;
font-size:16pt;
font-size: 14pt;
margin-top: 20px;
margin-bottom: 20px;
}
label
@ -73,4 +74,4 @@ div.hidden
h1
{
text-align:center;
}
}

View file

@ -95,7 +95,6 @@
CreateHeadline("Key Control Panel");
CreateInfoBox($formState);
CreateAccessBox($formState);
echo $formState;
switch ($formState)
{
@ -138,7 +137,7 @@
}
?>
<div class="row">
<input class="form-control" type="submit" name="submit" value="Absenden"/>
<input class="form-control btn-success" type="submit" name="submit" value="Absenden"/>
</div>
<input type="hidden" value="<?php /*Hidden input with previously generated id - used for preventing double posts*/ echo $_SESSION['submissionId'];?>" name="submissionId">
</form>
@ -284,4 +283,4 @@
}
return KEYSTATE_NONEXISTENT;
}
?>
?>

View file

@ -128,9 +128,9 @@
}
CreateRowHeader();
echo " <div class=\"col-5\">\n <input type=\"submit\" class=\"form-control\" name=\"changesConfirm\" value=\"Confirm Changes\"/>\n </div>\n";
echo " <div class=\"col-5\">\n <input type=\"submit\" class=\"form-control btn-success\" name=\"changesConfirm\" value=\"Confirm Changes\"/>\n </div>\n";
echo " <div class=\"col-2\"></div>\n";
echo " <div class=\"col-5\">\n <input type=\"submit\" class=\"form-control\" name=\"changesDiscard\" value=\"Discard Changes\"/>\n </div>\n";
echo " <div class=\"col-5\">\n <input type=\"submit\" class=\"form-control btn-danger\" name=\"changesDiscard\" value=\"Discard Changes\"/>\n </div>\n";
echo "</div>\n";
// Hidden input with previously generated id - used for preventing double posts
@ -144,9 +144,9 @@
CreateTextBox("Key file name", "keyFile", $keyFile);
CreateRowHeader();
echo " <div class=\"col-5\">\n <input type=\"submit\" class=\"form-control\" name=\"keyGenNew\" value=\"Generate New Key File\"/>\n </div>\n";
echo " <div class=\"col-5\">\n <input type=\"submit\" class=\"form-control btn-success\" name=\"keyGenNew\" value=\"Generate New Key File\"/>\n </div>\n";
echo " <div class=\"col-2\"></div>\n";
echo " <div class=\"col-5\">\n <input type=\"submit\" class=\"form-control\" name=\"keyGenAppend\" value=\"Append existing Key File\"/>\n </div>\n";
echo " <div class=\"col-5\">\n <input type=\"submit\" class=\"form-control btn-warning\" name=\"keyGenAppend\" value=\"Append existing Key File\"/>\n </div>\n";
echo "</div>\n";
// Hidden input with previously generated id - used for preventing double posts

View file

@ -83,7 +83,7 @@
CreateQuestionnaireElement("comment", $questionnaire, $_POST);
?>
<div class="row">
<input class="form-control" type="submit" name="submit" value="Absenden"/>
<input class="form-control btn-success" type="submit" name="submit" value="Absenden"/>
</div>
</form>
</div>

View file

@ -77,7 +77,7 @@
CreateQuestionnaireElement("comment", $questionnaire, $_POST);
?>
<div class="row">
<input class="form-control" type="submit" name="submit" value="Absenden"/>
<input class="form-control btn-success" type="submit" name="submit" value="Absenden"/>
</div>
</form>
</div>
@ -97,4 +97,4 @@
case KEYSTATE_USED: CreateMessageBox(MSG_DANGER, "Achtung!", "Der angegebene Code ist wurde bereits eingelöst. Es darf pro Student nur eine ESE-Tasse ausgegeben werden."); break;
}
}
?>
?>