Input validation #86

Merged
bones7242 merged 3 commits from input-validation into master 2017-07-14 18:14:52 +02:00
2 changed files with 9 additions and 0 deletions
Showing only changes of commit 6f2753445d - Show all commits

View file

@ -119,6 +119,11 @@ table {
word-wrap: break-word;
}
.input-error {
font-weight: bold;
color: red;
}
@media (max-width: 1250px) {
.wrapper {

View file

@ -11,6 +11,10 @@
<script type ="text/javascript">
function focusThisInput(event){
}
function copyToClipboard(event){
var elementToCopy = event.target.dataset.elementtocopy;
var element = document.getElementById(elementToCopy);