Skip to content
Snippets Groups Projects

Feat-changes-for-UI-deploy

Merged Krish Moodbidri requested to merge krish94/self-reg-form:fix-texts-deploy into master
5 files
+ 16
19
Compare changes
  • Side-by-side
  • Inline
Files
5
  • 38a5fe9f
    Feat-changes-for-UI-deploy · 38a5fe9f
    Krish Moodbidri authored
    1. Made text changes to messages.py
    2. Replaced 2 checkboxes with 1 checkbox on signup and certify page
    3. Updated hrefs for UAB IT policies
@@ -11,9 +11,8 @@ function preCertification() {
function check() {
var submitButton = document.getElementById("submit");
let ckbox1 = document.getElementById('agree1');
let ckbox2 = document.getElementById('agree2');
submitButton.disabled = !(ckbox1.checked && ckbox2.checked);
let ckbox = document.getElementById('agree');
submitButton.disabled = !(ckbox.checked);
};
function displayloading1() {
Loading