<script src="resources/js/functions.js"></script>

		<style>
	    	<link rel="stylesheet" type="text/css" href="resources/css/restaurantapp.css"/>
	    </style>
		
	</head>

	<body>
<!-- CHECKOUT PAGE begin... -->
		<div data-role="page" id="checkout-page" class="main-page">
			<div class='page-width'>

				<!-- panel -->
					<?php 
printPanel("filenotfound-panel");
?>
				<!-- /panel -->

				<header data-role="header" data-position="fixed">
					<div style='max-width: 800px !important; margin: 0 auto !important; position: relative !important; padding-right: 5px;'>
					<!--
						<h1 class="ui-title" role="heading">Home</h1>
					-->
						<div class="ui-btn-left" data-role="controlgroup" data-type="horizontal" style='padding-top: 5px;'>
					    	<a href="signin.php" data-role="button" data-icon="false" style='font-size: 80%; width: auto;' data-ajax='false'>Sign In</a>
					    	<a href="signup.php" data-role="button" data-icon="false" style='font-size: 80%; width: auto;' data-ajax='false'>Sign Up</a>
					    </div>
						
						<a href='#filenotfound-panel' data-icon='bars' data-role='button' data-iconpos='notext' style='float: right; display: inline;'>Dropdown Menu</a>
					</div>
		<script src="resources/js/functions.js"></script>

		<style>
	    	<link rel="stylesheet" type="text/css" href="resources/css/restaurantapp.css"/>
	    </style>
		
	</head>

	<body>
<!-- MY REWARDS PAGE begin... -->
		<div data-role="page" id="my-rewards-page" class="my-rewards-page">
			<div class='page-width'>

				<!-- panel -->
					<?php 
printPanel("my-rewards-panel");
?>
				<!-- /panel -->

				<?php 
printHeader(3, "my-rewards");
?>

				<article data-role="content">

					<center>
						<h1>My Rewards</h1>
						<img src="resources/images/under_construction.png" class="fullscreen" alt="Restaurant" align="middle" width=25% height="auto" style="padding-top: 1em; padding-bottom: 1em;" />
						<h3>Under Construction. Check Back Next Semester! =)</h3>
					</center>
		<script src="resources/js/functions.js"></script>

		<style>
	    	<link rel="stylesheet" type="text/css" href="resources/css/restaurantapp.css"/>
	    </style>
		
	</head>

	<body>
<!-- CHECKOUT PAGE begin... -->
		<div data-role="page" id="checkout-page" class="main-page">
			<div class='page-width'>

				<!-- panel -->
					<?php 
printPanel("checkout-panel");
?>
				<!-- /panel -->

				<?php 
printHeader(3, "checkout");
?>

				<article data-role="content">

					<center>
						<h1>Checkout</h1>
					</center>

					<center>
				type: "post",
				data: { ajax: "ajax"}
			});

		// Deal with the results of the above ajax call
		ajaxRequest.done(function (response, textStatus, jqXHR) {
			$('#mainpanel').html(response);

			// and do it again
			setTimeout(get_update, "<?php 
echo $widgetperiod;
?>
");
		});
	}

	events.push(function(){
		// Start polling for updates some small random number of seconds from now (so that all the widgets don't
		// hit the server at exactly the same time)
		setTimeout(get_update, Math.floor((Math.random() * 10000) + 1000));
	});
//]]>
</script>
<div id="mainpanel" class="content">

<?php 
printPanel();
?>
</div>

            console.log(e);
        }
      });
    });
  </script>
		
	</head>

	<body>
<!-- RESTAURANT LOCATOR PAGE begin... -->
		<div data-role="page" id="restaurant-locator-page" data-url="restaurant-locator-page" class="restaurant-locator-page">
			<div class='page-width'>

				<!-- panel -->
					<?php 
printPanel("restaurant-locator-panel");
?>
				<!-- /panel -->

				<?php 
printHeader(3, "restaurant-locator");
?>
				
			    <h1>Maps</h1>
			    <div id="map"></div>
			        <!-- map loads here... -->
			    </div>

				<!-- Load map assets at bottom for performance -->

				<?php 
Example #6
0
            <?php 
        print printListItem("Type", $type);
        print printListItem("Origin", $origin);
        print printListItem("Provenance", $provenance);
        print printListItem("File Format", $file_format);
        print printListItem("Place of Composition", $place_of_composition);
        ?>
          </ul>
        </div>

        <div class="col-xs-5">
          <?php 
        print printPanel("Shelfmark", $shelfmark);
        print printPanel("Divisions of the Text", $text_divisions);
        print printPanel("Source", $source);
        print printPanel("Notes", $notes);
        ?>
        </div>

        <div class="col-xs-3">
          <?php 
        print printWell("URL", $url);
        /* 7/27/15 - Temporarily removed until submission form gives off these fields.
         * print printWell("Image URL", $image_url);
         * print printWell("Thumbnail URL", $thumbnail_url);
         */
        print printWell("Full Text URL", $full_text_url);
        print printWell("HTML Metadata URL", $metadata_html_url);
        print printWell("XML Metadata URL", $metadata_xml_url);
        ?>
        </div>
		<style>
	    	<link rel="stylesheet" type="text/css" href="resources/css/restaurantapp.css"/>
	    </style>
		
	</head>

	<body>

<!-- ADD ITEM PAGE begin... -->

		<div data-role="page" id="add-item-page" class="main-page">
			<div class='page-width'>

				<!-- panel -->
					<?php 
printPanel("add-item-panel");
?>
				<!-- /panel -->

				<?php 
printHeader(2, "add-item");
?>

				<center>
					<article data-role="content">

						<?php 
$queryType = "SELECT * FROM MENU_ITEM WHERE ITEM_ID = {$id}";
if ($r = mysql_query($queryType)) {
    while ($row = mysql_fetch_array($r)) {
        echo "<h1>" . $row['NAME'] . "</h1>";
    <style>
      <link rel="stylesheet" type="text/css" href="resources/css/restaurantapp.css"/>
    </style>
    
  </head>

  <body>

    <!-- SIGN IN PAGE begin... -->
    <div data-role="page" id="myaccount-page">
      <div class='page-width'>

        <!-- panel -->
          <?php 
printPanel("myaccount-panel");
?>
        <!-- /panel -->
        <?php 
printHeader(3, "myaccount");
?>

        <?php 
//FOR SEARCHING DATA______________________________________________________________________________________________________________________
$query = "SELECT * FROM CUSTOMER WHERE CUSTOMER_ID = '{$customer_id}'";
if ($r = mysql_query($query)) {
    $row = mysql_fetch_array($r);
    $firstname = $row['FIRSTNAME'];
    $lastname = $row['LASTNAME'];
    $phone = $row['PHONE'];
    $dob = $row['DOB'];
		<script src="resources/js/functions.js"></script>

		<style>
	    	<link rel="stylesheet" type="text/css" href="resources/css/restaurantapp.css"/>
	    </style>
		
	</head>

	<body>
<!-- MY FAVORITES PAGE begin... -->
		<div data-role="page" id="my-favorites-page" class="my-favorites-page">
			<div class='page-width'>

				<!-- panel -->
					<?php 
printPanel("my-favorites-panel");
?>
				<!-- /panel -->

				<?php 
printHeader(3, "my-favorites");
?>

				<article data-role="content">

					<center>
						<h1>My Favorites</h1>
					</center>

					<center>
    <style>
      <link rel="stylesheet" type="text/css" href="resources/css/restaurantapp.css"/>
    </style>
    
  </head>

  <body>

<!-- SIGN IN PAGE begin... -->
    <div data-role="page" id="signup-page">
      <div class='page-width'>

        <!-- panel -->
          <?php 
printPanel("signup-panel");
?>
        <!-- /panel -->

        <?php 
printHeaderTitle("signup", "Sign Up");
?>

        <article data-role="content">

           <?php 
if (isset($_POST['create'])) {
    if (empty($_REQUEST['username']) || empty($_REQUEST['password']) || empty($_REQUEST['passwordconfirm']) || empty($_REQUEST['firstname']) || empty($_REQUEST['lastname']) || empty($_REQUEST['email'])) {
        echo "<center><font color='red'>please fill out all fields before continuing.</font></center>";
        $username = $_POST['username'];
        $password = $_POST['password'];
					<h3>Under Construction. Check Back Next Semester! =)</h3>
				</center>

				<?php 
printFooter(1);
?>
			</div>
		</div>
<!-- ABOUT US PAGE end... -->

<!-- CONTACT PAGE begin... -->
		<div data-role="page" id="contact-page">
			<div class="page-width">
				<!-- panel -->
					<?php 
printPanel("contact-panel");
?>
				<!-- /panel -->
				<?php 
printHeader(3, "contact");
?>

				<center>
					<h1>Contact Us</h1>
					<img src="resources/images/under_construction.png" class="fullscreen" alt="Restaurant" align="middle" width=25% height="auto" style="padding-top: 1em; padding-bottom: 1em;" />
					<h3>Under Construction. Check Back Next Semester! =)</h3>
				</center>

				<?php 
printFooter(1);
?>
    <style>
      <link rel="stylesheet" type="text/css" href="resources/css/restaurantapp.css"/>
    </style>
    
  </head>

  <body>

    <!-- SIGN IN PAGE begin... -->
    <div data-role="page" id="signin-page">
      <div class='page-width'>

        <!-- panel -->
          <?php 
printPanel("signin-panel");
?>
        <!-- /panel -->

        <?php 
printHeader(1, "signin");
?>

        <center>
        <div style="padding: 5px;">
          <form action = "<?php 
echo $_SERVER['PHP_SELF'];
?>
" method = "post" data-ajax = "false">
            
            <div class="ui-field-contain">