survey_seahorse

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

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

Merge pull request #3 from JKubach/liottad6-patch-1

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>