From e9fcb5ef325910a9f94380be1f4df4d2f5ddcd6a Mon Sep 17 00:00:00 2001 From: youngsukim-csusb <youngsu.kim@csusb.edu> Date: Mon, 20 Jun 2022 16:37:03 -0700 Subject: [PATCH] test spawn --- spawn.html | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) diff --git a/spawn.html b/spawn.html index 7b73f94..dac4dfe 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 -- GitLab