?
Current Path : /home1/savoy/public_html/savoyglobal.net/application/views/admin/ |
Linux gator3171.hostgator.com 4.19.286-203.ELK.el7.x86_64 #1 SMP Wed Jun 14 04:33:55 CDT 2023 x86_64 |
Current File : /home1/savoy/public_html/savoyglobal.net/application/views/admin/settings.php |
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd"> <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en"> <?php $this->load->view('admin/header'); ?> <script type="text/javascript"> function checkpassword() { var x=document.forms["myForm"]["password"].value; var y=document.forms["myForm"]["c_password"].value; if (x==null || x=="" || y==null || y=="") { alert("Fields must be filled out"); return false; } if(x==y) return true; else alert("Passwords Mismatch"); return false; } </script> <body> <?php $this->load->view('admin/menu'); ?> <div class="container_12"> <!-- Example table --> <!-- Form elements --> <div class="grid_12"> <div class="module"> <h2><span>Update Password</span></h2> <div class="module-body"> <form name="myForm" action="<?=site_url();?>/admin/update_password" method="post" onsubmit="return checkpassword();"> <p> <label>Password</label> <input type="password" class="input-short" id="password" name="password" /> </p> <p> <label>Confirm Password</label> <input type="password" class="input-short" id="c_password" name="c_password" /> </p> <fieldset> <input class="submit-green" type="submit" value="Submit" /> <input class="submit-gray" type="button" onclick="history.back();" value="Cancel" /> </fieldset> </form> </div> <!-- End .module-body --> </div> <!-- End .module --> <div style="clear:both;"></div> </div> <!-- End .grid_12 --> <div style="clear:both;"></div> </div> <!-- End .container_12 --> <?php $this->load->view('admin/footer'); ?> </body> </html>