Added a check to make sure the server doesn't exist before creating it

This commit is contained in:
2022-10-06 21:11:54 -04:00
parent 4007b99833
commit 54199bf7c8
4 changed files with 40 additions and 3 deletions

View File

@ -2,6 +2,18 @@ body{
background-color: #e6e6e6;
}
input[type=submit]:disabled,
button:disabled{
background-color: darkgrey;
}
input[type=submit]:disabled:hover,
button:disabled:hover{
background-color: darkgrey;
border: 1px solid #bbb;
color: #555;
cursor: not-allowed;
}
/* set the max-width for centered content */
.container{
max-width: 1100px;