0byt3m1n1
Path:
C:
/
wamp64
/
www
/
cpms_new
/
ADMIN
/
[
Home
]
File: createpi.php
<?php $MAIN_HEADING = "Create Principal Investigator"; ?> <?php include("include/adminheader.php"); ?> <p class="msgText"> <?php if (isset($message)) echo $message;?> </p> <p class="msgText"> </p> <form action="createpi_ctrl.php" method="post" enctype="multipart/form-data" name="form1" id="form1"> <p> </p> <table width="619" height="60" align="center"> <tr> <th width="164" height="39" class="projectboldtxt" scope="row"><div align="left">Principal Investigator</div></th> <td width="443"><label> <input class="form-control" type="text" name="txtpi" id="txtpi" value="<?php if(isset($username) && $username!="") { echo $username; }?>"/><span class="valText"><?php if(isset($error['pi_null'])) { echo $error['pi_null']; } if(isset($error['pi_exist'])) { echo $error['pi_exist']; }?></span></label></td> </tr> <tr></tr> </table> <div class="form-group"> <div class="col-md-6 col-sm-6 col-xs-12 col-md-offset-4"> <button class="btn btn-success" type="submit" name="save" id="save" value="Submit">Submit</button> <a href="search_pi.php" class="btn btn-danger "> Search & Edit</a> </div> </div> <table width="795" border="0"> <tr> <td width="181"> </td> <td width="604"><strong>Other Settings</strong></td> </tr> <tr> <td> </td> <td><ul> <li><a href="project_verify.php">Set Verification date for projects.</a></li> </ul></td> </tr> </table> <p> </p> </form> <?php include "include/footer.php"; ?>