diff options
author | prashantsinalkar | 2019-06-28 21:44:43 +0530 |
---|---|---|
committer | prashantsinalkar | 2019-06-28 21:44:43 +0530 |
commit | 1473227a75101f5b76d6b522da5737df2f5eb058 (patch) | |
tree | dab59c0b7970a0b059d4eeb84aafd54e14ed47e9 /static/website/templates/bug-form.html | |
parent | 459d1aec769f62570af51a3a53ebe0bce4a6754c (diff) | |
download | R_on_Cloud_Web_Interface-1473227a75101f5b76d6b522da5737df2f5eb058.tar.gz R_on_Cloud_Web_Interface-1473227a75101f5b76d6b522da5737df2f5eb058.tar.bz2 R_on_Cloud_Web_Interface-1473227a75101f5b76d6b522da5737df2f5eb058.zip |
added basic interface for development
Diffstat (limited to 'static/website/templates/bug-form.html')
-rw-r--r-- | static/website/templates/bug-form.html | 52 |
1 files changed, 52 insertions, 0 deletions
diff --git a/static/website/templates/bug-form.html b/static/website/templates/bug-form.html new file mode 100644 index 0000000..84ed6a7 --- /dev/null +++ b/static/website/templates/bug-form.html @@ -0,0 +1,52 @@ + <!-- bug form--> + + <div class="modal-dialog"> + <div class="modal-content"> + + <!-- Modal Header --> + <div class="modal-header"> + <h5 class="modal-title text-primary">Report bug/ feedback</h5> + <button type="button" class="close" data-dismiss="modal">×</button> + </div> + + <!-- Modal body --> + <div class="modal-body"> + <form id="bug-form" action="" method="POST" accept-charset="utf-8"> {% csrf_token %} + {{ form.example }} + <div id="non-field-errors"> + </div> + <div id="id_issue_wrapper" class="wrapper"> + <label>Type of issue <span class="req">*</span>:</label> + {{ form.issue }} + </div> + + <div id="id_description_wrapper" class="wrapper"> + <label>Description<span class="req">*</span>:</label> + {{ form.description }} + </div> + + <div id="id_email_wrapper" class="wrapper"> + <span id="email-wrapper"> + {{ form.email.errors }} + <label>Enter Your Email<span class="req">*</span>:</label> + {{ form.email }} + </span> + </div> + <p id="question" class="text-danger""></p><input id="ans" type="text"> + <div id="message" class="text-danger">Please verify.</div> + <div id="success" class="text-success">Validation complete ☺</div> + <div id="fail" class="text-danger">Validation failed ☹</div> + <button type="reset" class="btn btn-primary" value="reset">Reset captcha</button> + <input type="submit" id="bug-form-submit" class="btn btn-primary float-right"> + </form> + </div> + + <!-- Modal footer --> + <div class="modal-footer"> + <button type="button" class="btn btn-danger" data-dismiss="modal">Close</button> + </div> + + </div> + </div> + + <!-- --------------------bug form modal ends------------------ --> |