summaryrefslogtreecommitdiff
path: root/index.php
blob: a31a764633d8c39c964967403c2b37a183947069 (plain)
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
78
79
80
81
82
<?php
require('inc/common.php');
?>
<!DOCTYPE html>
<html>
  <head>
    <title>Bulletin</title>
    <meta charset="UTF-8" />
    <meta name="description" content="Community, at your fingertips." />
    <link rel="stylesheet" type="text/css" href="css/main.css" />
    <link rel="stylesheet" type="text/css" href="css/chat.css" />
    <script type="text/javascript" src="js/jquery.min.js"></script>
    <script type="text/javascript" src="js/jquery-ui.min.js"></script>
    <script type="text/javascript" src="js/frontpage.js"></script>
    <script type="text/javascript" src="js/auth.php"></script>
    <script type="text/javascript" src="js/chat.js"></script>
  </head>
  <body>
    <div id="cover">
        <a id="headerbar" href="<?=htmlentities($b_config['base_url']); ?>"><div id="headerimg"></div></a>
      <div id="midbody">
        <div class="bigquote">Community, at your fingertips.</div>
        <div id="links">
          <span class="link" id="link1"><a href="/login.php">Log In</a></span>
          <span class="link" id="link2"><a href="/signup.php">Sign Up</a></span>
        </div>
      </div>
    </div>
    <div id="part2">
     <div id="body2">
        <div id="header3">
          <a href="#part2"><div id="dwnbtn"></div></a>
        </div>
        <div id="mission">
          <div id="workers">
            <h2>For Hard Workers</h2>
            <div class="nowrap">
              <div class="bubble lbubble">
                <p class="bubblehead">Earn Some Money</p>
                <p>Bulletin is for high school and college students, looking to make some money in their spare time. There are no fees for our service, so you keep 100% of your profits.</p>
              </div>
              <div class="bubble mbubble">
                <p class="bubblehead">Low Commitment</p>
                <p>Bulletin features one-time jobs, like mowing lawns and raking leaves. There's no need to commit to a continuing responsibility. Apply to ads when you have some free time!</p>
              </div>
              <div class="bubble rbubble">
                <p class="bubblehead">It&apos;s Free</p>
                <p>Create an account for free and start applying to jobs in minutes. You’ll be making money in no time!</p>
              </div>
            </div>
            <a href="/signup.php?t=0">
              <div class="workerbtn">Become a Worker</div>
            </a>
          </div>
          <div id="employers">
            <h2>For Household CEOs</h2>
            <div class="nowrap">
              <div class="bubble lbubble">
                <p class="bubblehead">Get Jobs Done</p>
                <p>Post an ad and review your student applicants. Find the worker that's right for you, to help you get the job done.</p>
              </div>
              <div class="bubble mbubble">
                <p class="bubblehead">Good for Community</p>
                <p>At Bulletin our mission is to help high school and college students get their first workforce exposure. Our service makes it as easy as possible for you to assist us in that effort.</p> 
              </div>
              <div class="bubble rbubble">
                <p class="bubblehead">Save Money</p>
                <p>We connect you with student workers as an alternative to expensive professionals for unskilled tasks. Bulletin is completely free and we leave it up to you to pay the worker.</p>
              </div>
            </div>
            <a href="/signup.php?t=1">
              <div class="employerbtn">Become an Employer</div>
            </a>
          </div>
          <div id="footer">
            <p id="copy"><a href="#cover">Top</a>&nbsp;&nbsp;&nbsp;&bull;&nbsp;&nbsp;&nbsp;<?=copy_notice();?></p>
          </div> 
        </div>
      </div>
    </div>
 </body>
</html>