-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy patholdindex.php
executable file
·41 lines (34 loc) · 1.46 KB
/
oldindex.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
<?php
session_start();
if (isset($_SESSION['username']))
header('Location: welcome.php');
include 'header.php';
include 'menu.php';
?>
<header>
<div id="menu-button"><a href="" id="menu-btn"><i class="ss-icon"></i></a></div>
<h1><a href="/">HiredinNY</a></h1>
</header>
<div id="main">
<div class="container">
<h4>Current Pages</h4>
<ul>
<li><a href="/login.php">Login</a></li>
</ul>
<h4>Pinzler's Notes</h4>
<ul>
<li>I shouldn't do front end stuff and this is why...</li>
<li>Login through LinkedIn then search for a job title and then select a job or two.</a></li>
<li>Then the menu button in the upper left should show the jobs you selected. Click on one of them to see your todos for that job.</li>
<li>It's functional but can someone please pretty this up a bit.</li>
</ul>
<h4>Kennedy's Notes</h4>
<ul>
<li>I started to build this from scratch, then I figured it might be easier for others if we built with jQuery Mobile.</li>
<li>You can find all the demo or example for <a href="http://view.jquerymobile.com/1.3.1/dist/demos/">page elements here</a></li>
<li>I am using <a href="http://symbolicons.com/">Symbol Icons</a> for...well the icons.</li>
<li>Each page had 2 includes; header.php, footer.php, and menu.php. These items contain the shit that gets repeated.</li>
</ul>
</div><!--/container-->
</div><!--/main-->
<?php include("footer.php"); ?>