diff options
author | Andrea Lepori <alepori@student.ethz.ch> | 2020-07-30 12:33:01 +0200 |
---|---|---|
committer | Andrea Lepori <alepori@student.ethz.ch> | 2020-07-30 12:33:01 +0200 |
commit | f3fb72eee5a6ffe94990d4d97c1e9aed35575433 (patch) | |
tree | 2750bc8b8c16bb8e67742e81b7c25ca2f67153b7 /server/templates | |
parent | squash migrations (diff) | |
download | scout-subs-f3fb72eee5a6ffe94990d4d97c1e9aed35575433.tar.gz scout-subs-f3fb72eee5a6ffe94990d4d97c1e9aed35575433.zip |
block debug actions and confirm for approve doc
Diffstat (limited to 'server/templates')
-rw-r--r-- | server/templates/server/upload_doc.html | 12 |
1 files changed, 9 insertions, 3 deletions
diff --git a/server/templates/server/upload_doc.html b/server/templates/server/upload_doc.html index 334a819..3650cd8 100644 --- a/server/templates/server/upload_doc.html +++ b/server/templates/server/upload_doc.html @@ -25,9 +25,7 @@ <input name="code" id="code" type="text"> <label for="code">Codice documento</label> </div> - <a class="waves-effect waves-light btn red lighten-1" onclick="send()">Anteprima documento</a> </div> - <br> <div class="row"> <div class="file-field input-field col s12"> <div class="btn red lighten-1"> @@ -41,7 +39,8 @@ </div> </div> <div class="card-action"> - <a class="waves-effect waves-light btn red lighten-1" href="#" onclick="document.getElementById('form').submit()">Invia</a> + <a id="send_button" class="waves-effect waves-light btn red lighten-1" href="#" onclick="confirm()">Approva</a> + <a class="right waves-effect waves-light btn red lighten-1" onclick="send()">Anteprima documento</a> </div> </form> </div> @@ -61,6 +60,13 @@ {% endblock %} {% block script %} +function confirm() { + var button = document.getElementById('send_button') + button.innerHTML = "Sicuro?" + button.setAttribute('onclick', "document.getElementById('form').submit()") + button.setAttribute('class', "waves-effect waves-light btn green") +} + function send() { var form = document.getElementById('preview_form') var action = document.getElementById('code_submit') |