1
0
mirror of https://github.com/matt-fidd/stratos.git synced 2026-01-01 20:59:30 +00:00

Set upper limit for mark in test template creation

This commit is contained in:
2022-04-21 13:16:51 +00:00
parent 586f84d65c
commit fe49bfc2b0

View File

@@ -4,7 +4,7 @@
<div class='formContainer'>
<form action='/admin/test-template/add' method='post'>
<input type='text' id='name' name='name' placeholder='Test name' required/>
<input type='number' id='mark' name='mark' placeholder='Maximum mark' step=1 required/>
<input type='number' id='mark' name='mark' min=0 max=4294967295 placeholder='Maximum mark' step=1 required/>
<input type='submit' class='btn btn--primary btn--full' value='Create test template'/>
</form>