0byt3m1n1
Path:
C:
/
GEOMATICS 23-01-2021
/
LAN
/
CPMS code
/
CPMS
/
ADMIN
/
[
Home
]
File: createpi.php
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> <html xmlns="http://www.w3.org/1999/xhtml"> <head> <title>PI creation |online financial management system for projects</title> <meta http-equiv="Content-Type" content="text/html; charset=utf-8" /> <link href="../style.css" rel="stylesheet" type="text/css" /> <link rel="icon" href="../images/icon.ico" /> <style type="text/css"> <!-- .style3 {font-size: 16px} --> </style> </head> <body> <p> <!--<div id="headerbg"> <div id="headerblank">--> <?php include("include/adminheader.php"); ?> </div> </div> </p> <p class="msgText"> <?php if (isset($message)) echo $message;?> </p> <p class="msgText"> </p> <p align="center" class="projectboldtxt style3">Create Principal Investigator</p> <form action="createpi_ctrl.php" method="post" enctype="multipart/form-data" name="form1" id="form1"> <p> </p> <table width="619" height="112" align="center"> <tr> <th width="164" height="39" class="projectboldtxt" scope="row"><div align="left">Principal Investigator</div></th> <td width="443"><label> <input type="text" name="txtpi" id="txtpi" value="<?php if($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> <th height="24" scope="row"><div align="left"></div></th> <td><label> <input type="submit" name="save" id="save" value="Submit" /> <a href="search_pi.php" class="projectboldtxt"> Search & Edit</a></label> <label></label></td> </tr> <tr></tr> </table> <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"; ?> </p> </body> </html>