survey_seahorse

Software Engineering Project - Fall 2018
Log | Files | Refs | README

commit a17f5a9f0ec3d4d6538c655730ecfc791bfd5f0f
parent 19bd57877e57a19f53bacfe8dd2f0360ca28ac49
Author: David Liotta <liottad6@students.rowan.edu>
Date:   Fri, 14 Dec 2018 20:25:28 -0500

Added first attempt at nav bar
Diffstat:
Mwebsite/index.php | 8++++++++
1 file changed, 8 insertions(+), 0 deletions(-)

diff --git a/website/index.php b/website/index.php @@ -22,6 +22,14 @@ $newUser = mysqli_fetch_assoc($result); <meta name="theme-color" content="#ffffff"> </head> +<link rel = "stylesheet" href= "res/nav.css" /> +<div class= nav> + <a href="index.php" target="_blank"> Home </a> + <a href="directory.php" target="_blank"> Surveys </a> + <a href="profile.php" target="_blank"> My Profile </a> +</div> +<br> + <h1> Survey Seahorse </h1> <h3> Random Question: <?php echo $q['question_content']; ?> </h3> <a href="login.php"> Login </a> <br>