diff --git a/spawn.html b/spawn.html index 7b73f94f10a57e54a0bd3a64116a2f75f61c7230..dac4dfe421971aa23c0a09fcc6c6805b02fae8ae 100644 --- a/spawn.html +++ b/spawn.html @@ -18,11 +18,13 @@ <input class="form-control input-lg" type="range" name="gpus" value="0" min="0" max="4" oninput="this.nextElementSibling.value = this.value"/> <output>0</output> <br/> -<label for="cores">Cores</label> -<input class="form-control input-lg" type="range" name="cores" value="1" min="0" max="96"/> +<label for="cores">CPUS</label> +<input class="form-control input-lg" type="range" name="cores" value="1" min="0" max="96" oninput="this.nextElementSibling.value = this.value"/> +<output>1</output> <br/> <label for="ram">RAM, GB</label> -<input class="form-control input-lg" type="range" name="ram" value="8" min="1" max="512"/> +<input class="form-control input-lg" type="range" name="ram" value="8" min="1" max="512" oninput="this.nextElementSibling.value = this.value"/> +<output>8</output> <br/> <p>Testing spawner</p> {% endblock %} \ No newline at end of file