Advertisement
Guest User

Untitled

a guest
Nov 17th, 2017
63
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.47 KB | None | 0 0
  1. <!DOCTYPE html>
  2. <html>
  3. <head>
  4. <link rel="stylesheet" href="css/bootstrap.min.css">
  5. <link rel="stylesheet" type="text/css" href="CSS.css">
  6.  
  7. <meta charset="utf-8">
  8. <title> Julie Thorpe </title>
  9.  
  10. <meta name="viewport">
  11. <div class="pic">
  12. <h1> Julie Thorpe </h1>
  13. </div>
  14.  
  15. </head>
  16. <body>
  17. <?php
  18. $con = mysqli_connect('localhost','root','');
  19. $db = mysqli_select_db($con,'assignment2');
  20.  
  21. ?>
  22. <div class="col-sm-6">
  23. <div class="menu">
  24. <ul>
  25. <li><a href="index.php">Home/News</a></li>
  26. <br>
  27. <li><a href="pub.php">Publications</a></li>
  28. <br>
  29. <li><a href="press.php">Press</a></li>
  30. <br>
  31. <li><a href="research.php">Research Interest & Programs</a></li>
  32. <br>
  33. <li><a href="teaching.php">Teaching</a></li>
  34. <br>
  35. <li><a href="group.php">Research Groups</a></li>
  36. <br>
  37. <li><a href="contact.php">Contact</a></li>
  38. <br>
  39. </ul>
  40. </div>
  41. </div>
  42. <div class="bio">
  43. <div class="col-xs-3">
  44. <img src="http://thorpe.hrl.uoit.ca/images/headshot.jpg" width=" 20%">
  45. </div>
  46. <div class="col-xs-3">
  47.  
  48. <h4> Bio </h4>
  49. <p>
  50. <?php
  51. if(isset($_POST["submit"])){
  52. echo $_POST["about"];
  53. }
  54. else{
  55. echo "I am an associate professor in the Faculty of Business and Information Technology (FBIT) at the University of Ontario Institute of Technology. I am a member of the Graduate Faculty for both the Department of Computer Science and FBIT. My research focuses on human factors and computer security";
  56. }
  57. ?>
  58. </p>
  59. </div>
  60. </div>
  61. <div class="col-md-12">
  62. <div class="news">
  63. <h1> News </h1>
  64. <?php
  65. echo "<h6>".$_POST["newsTit"]."</h6>";
  66. echo "<p>".$_POST["newsBody"]."</p>";
  67. ?>
  68.  
  69.  
  70.  
  71.  
  72. <h6> To appear in PST 2017:</h6><p> "System-Assigned Passwords You Can't Write Down, But Don't Need To". Z. Joudaki, J. Thorpe, and M. Vargas Martin. Proceedings of the 15th International Conference on Privacy, Security and Trust (PST), 2017.
  73. <h6> The Winter 2017 IT Security Reading Group (IT-SRG) schedule is now available. </h6><p>The IT Security Reading Group (IT-SRG) is a group of UOIT students (graduate and senior undergraduate) and faculty members who are interested in computer security and privacy. The Winter 2017 schedule is now available. February 13, 2017<p>
  74. <h6>New Security Paradigms Workshop</h6><p> (NSPW 2017) has announced its call for papers. I am serving as a program committee member. [web page]</p>
  75. </div>
  76. </div>
  77. </body>
  78. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement