disable button during load
All checks were successful
Build and push / Pulling repo on server (push) Successful in 3s
All checks were successful
Build and push / Pulling repo on server (push) Successful in 3s
This commit is contained in:
parent
19622359f0
commit
328633a4b3
@ -22,7 +22,7 @@
|
|||||||
<h2>Ergebnis
|
<h2>Ergebnis
|
||||||
<?= $result_id?'Bearbeiten':'Eintragen'; ?>
|
<?= $result_id?'Bearbeiten':'Eintragen'; ?>
|
||||||
</h2>
|
</h2>
|
||||||
<form id="resulteditform" hx-post="/runs/validateresults" hx-encoding='multipart/form-data' hx-target="#response">
|
<form id="resulteditform" hx-post="/runs/validateresults" hx-encoding='multipart/form-data' hx-target="#response" hx-disabled-elt="#submit">
|
||||||
<div class="dropzone-previews"></div>
|
<div class="dropzone-previews"></div>
|
||||||
<input type="hidden" name="result_id" value="<?= $result_id; ?>">
|
<input type="hidden" name="result_id" value="<?= $result_id; ?>">
|
||||||
<input type="hidden" name="run_id" value="<?= $run_id; ?>">
|
<input type="hidden" name="run_id" value="<?= $run_id; ?>">
|
||||||
@ -103,7 +103,7 @@
|
|||||||
<label class="form-check-label" for="public">Daten im Lauf veröffentlichen</label>
|
<label class="form-check-label" for="public">Daten im Lauf veröffentlichen</label>
|
||||||
<input class="form-check-input" type="checkbox" id="public" name="public" value="1" <?=$result['public']!='0' ?'checked':''; ?>>
|
<input class="form-check-input" type="checkbox" id="public" name="public" value="1" <?=$result['public']!='0' ?'checked':''; ?>>
|
||||||
</div>
|
</div>
|
||||||
<button type="submit" name="submit" value="true" class="btn btn-primary">Speichern</button>
|
<button type="submit" id="submit" name="submit" value="true" class="btn btn-primary">Speichern</button>
|
||||||
<progress id='progress' value='0' max='100'></progress>
|
<progress id='progress' value='0' max='100'></progress>
|
||||||
<div id="response"></div>
|
<div id="response"></div>
|
||||||
</form>
|
</form>
|
||||||
|
Reference in New Issue
Block a user