예제 #1
0
<?php

include "php/templates/boilerplate.php";
if (!tokenauthservice()) {
    // handle unauthenticated
    header("Location: login.php");
    die;
}
?>
<!DOCTYPE html>
<html>
  <?php 
head_section(array(), array());
?>
  <body>
    <?php 
nav_section();
?>
    <div class="container">
      <div class="row">
        <div class="col-sm-12">
          <h1 class="opensans"><!--INSERT NAME OF USER HERE--></h1>
        </div>
      </div>
    </div>
    <?php 
footer_section();
?>
  </body>
</html>
예제 #2
0
        header("Location: members.php");
    } else {
        $login_failed = true;
    }
    // couldn't authenticate
}
// we know it's a GET REQUEST
include "php/templates/boilerplate.php";
// saves some overhead including here
?>


<!DOCTYPE html>
<html>
	<?php 
head_section(array(), array("css/login.css"));
?>
	<body>
		<?php 
nav_section();
?>

		<div class="container" id="login-form">
			<div class="row">
				<div class="col-xs-12 col-sm-4 col-sm-offset-4">
					<h3>Member Login</h3>
				<?php 
if ($login_failed) {
    ?>
					<div class="alert alert-danger fade in">Sorry, username or password incorrect.<a href="#" class="close" data-dismiss="alert" aria-label="close">&times;</a></div>
				<?php 
예제 #3
0
<?php

include 'php/templates/boilerplate.php';
include 'php/templates/rushevents-template.php';
include 'php/services/config-service.php';
include 'php/services/rushcalendar-service.php';
?>
<!DOCTYPE html>
<html lang="en">
  <?php 
// array of additional js files followed by array of additional css files
head_section(array(), array("css/rush.css"));
?>
  <body>
  <!-- Content -->
    <script type="text/javascript">
      <?php 
$rushConfig = configservice("rush", false);
?>
    </script>
<?php 
nav_section();
?>
    <!-- Main Container -->
    <div class="container-fluid" id="container">
      <div class="row purpose-block">
        <div class="col-xs-10 col-xs-offset-1 col-sm-8 col-sm-offset-2 col-md-6 col-md-offset-3 purpose">
          <h4><strong>THE PURPOSE OF THETA TAU IS TO DEVELOP AND MAINTAIN A HIGH STANDARD OF PROFESSIONAL INTEREST AMONG ITS MEMBERS AND TO UNITE THEM IN A STRONG BOND OF FRATERNAL FELLOWSHIP.</strong></h4>
          <br>
        </div>
        <div class="col-sm-6 col-sm-offset-3 col-md-4 col-md-offset-4">
예제 #4
0
include_once 'php/templates/boilerplate.php';
include_once 'php/templates/masthead-template.php';
// If logged in, show landing page
?>
<!DOCTYPE html>
<html lang="en">
  <?php 
$content = mastdataservice();
$path_string = "";
foreach ($content as $i => $path) {
    if ($i != 0) {
        $path_string .= " ";
    }
    $path_string .= $path['img'];
}
head_section(array('js/index.js'), array('css/index.css', 'css/mastheadcss.php?mastcontent=' . urlencode($path_string)));
?>

  <body>
  <!-- Content for body -->
  <script type="text/javascript">
    //# OF MAST SLIDES

    <?php 
configservice('index', true);
?>

  </script>

  <?php 
nav_section();
예제 #5
0
<?php

include_once 'php/templates/boilerplate.php';
// If logged in, show landing page
?>
<!DOCTYPE html>
<html lang="en">
  <?php 
head_section(array("js/datepicker.js"), array("css/datepicker.css"));
?>

  <body>

  <div class="input-group">
    <input class="form-control" type="text" placeholder="Click to choose date">
    <span class="input-group-addon"><span class="glyphicon glyphicon-calendar" aria-hidden="true"></span></span>
  </div>

  <script type="text/javascript">
    $('input').datepicker({"minViewMode":"months","viewMode":"months", "format":"mm/yyyy"});
  </script>
 
    <?php 
footer_section();
?>
  <!-- End Content -->
  </body>
</html>
예제 #6
0
<?php

include 'php/services/config-service.php';
include 'php/services/stats-service.php';
include 'php/services/familytreedata-service.php';
include 'php/templates/boilerplate.php';
include 'php/templates/stats-template.php';
include 'php/templates/familytree-template.php';
include 'php/templates/searchable-template.php';
?>
<!DOCTYPE html>
<html lang="en">
  <?php 
head_section(array("js/familytree.js", "js/members.js"), array("css/members.css", "css/familytree.css"));
?>

  <body>
  <!-- Content -->
  <?php 
nav_section();
?>
  <div class="container-fluid">
    <div class="row">
      <div class="col-xs-10 col-xs-offset-1 lead-text opensans">
        <h1 class="opensans top-title">Members</h1>
        <p class="lead">When you ask someone why they joined Theta Tau, you'll probably get a diverse set of answers. Some join because they seek professional growth. Other join to meet more engineers in their major and across disciplines. Some are attracted to networking opportunities, or have heard that Theta Tau is the oldest and largest Professional Engineering Fraternity in the country.</p>
        <p class="lead">However, when you ask someone why they stayed, and continue to participate in the Fraternity. You'll likely ever hear one answer. <b>It's the people</b>. Amoung all other things, it's the people, their values and their culture that make your college experience, and what you will remember years after you graduate. And this is especially true with Theta Gamma Chapter, which is made of some of the most diverse and extraordinary Engineers you will ever meet. These people are going places.</p>
        <p class="lead"><b> Get to know them.</b></p>
      </div>
    </div>
  </div>