-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathprocess.php
77 lines (67 loc) · 2.6 KB
/
process.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
<!doctype html>
<html class="no-js" lang="en">
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1">
<title></title>
<meta name="description" content="">
<meta name="author" content="">
<meta name="viewport" content="width=device-width">
<link rel="stylesheet" href="css/style.css">
<link rel="stylesheet" href="http://code.jquery.com/ui/1.8.20/themes/base/jquery-ui.css" type="text/css" media="all" />
<link rel="stylesheet" href="http://static.jquery.com/ui/css/demo-docs-theme/ui.theme.css" type="text/css" media="all" />
<script src="js/libs/modernizr-2.5.3-respond-1.1.0.min.js"></script>
</head>
<body>
<?php
$requireAuth = true;
require_once("includes/fbAuthorize.php");
?>
<div id="header-container">
<header class="wrapper clearfix">
<h1 id="title"><span class="ir">Mustache'd</span></h1>
<!--
<nav>
<ul>
<li><a href="#">nav ul li a</a></li>
<li><a href="#">nav ul li a</a></li>
<li><a href="#">nav ul li a</a></li>
</ul>
</nav>-->
</header>
</div>
<div id="main-container">
<div id="main" class="wrapper clearfix">
<article>
<section class="col">
<h2>The mustache</h1>
<p>is most often relegated to the select few who manage to make it work. Men like Tom Selleck, Burt Reynolds, Hulk Hogan, and Yosemite Same.</p>
</section>
<section class="col">
<h2>But fear not,</h2>
<p>for the failing fortitude of your facial folicles shall not force you to forfeit this artful feature any longer.</p>
</section>
<div class="clearfix"></div>
<section id="step-container">
<?php include("step1.php") ?>
<?php //include("step2.php") ?>
</section>
</article>
<!--
<aside>
<h3>aside</h3>
<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Aliquam sodales urna non odio egestas tempor. Nunc vel vehicula ante. Etiam bibendum iaculis libero, eget molestie nisl pharetra in. In semper consequat est, eu porta velit mollis nec. Curabitur posuere enim eget turpis feugiat tempor. Etiam ullamcorper lorem dapibus velit suscipit ultrices.</p>
</aside>-->
</div> <!-- #main -->
</div> <!-- #main-container -->
<div id="footer-container">
<footer class="wrapper">
<h3><!--footer--></h3>
</footer>
</div>
<script src="//ajax.googleapis.com/ajax/libs/jquery/1.7.2/jquery.min.js"></script>
<script>window.jQuery || document.write('<script src="js/libs/jquery-1.7.2.min.js"><\/script>')</script>
<script src="//ajax.googleapis.com/ajax/libs/jqueryui/1.8.18/jquery-ui.min.js"></script>
<script src="js/script.js?v=1"></script>
</body>
</html>