-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathindex.php
More file actions
127 lines (105 loc) · 5.95 KB
/
index.php
File metadata and controls
127 lines (105 loc) · 5.95 KB
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
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
<?php
require('includes/header.php');
require('scripts/db-config.php');
$date = new DateTime();
$sql = 'SELECT event_name, event_description, event_date FROM fsevents WHERE event_date > NOW() LIMIT 2';
$statement = $conn->prepare($sql);
$statement->execute();
$events = $statement->fetchAll();
$statement->closeCursor();
?>
<!-- Container content -->
<div class="container">
<div class="row">
<div class="col-12 col-md-6">
<h2 class="col-12 text-center mt-3 underline">WHAT IS FULL STACK?</h2>
<p>The Full Stack Coding program is a fifteen week immersive course in web development. It has been designed to aid participants in gaining the skills necessary to secure an entry-level position as a web developer in today’s job market. The training is focused on HTML, CSS, JavaScript MySQL, and PHP, as these languages are some core fundamental languages to develop for the World Wide Web.</p>
<p>By this course being a part of JSCC Career Development Department students Do Not receive credit hours towards any academics or college courses of any kind. This is a course strictly for personal growth and development of all individuals who desire to attend the Full Stack Coding training.
</p>
</div>
<div class="col-12 col-md-6">
<h2 class="col-12 text-center mt-3 underline">WHO IS FULL STACK FOR?</h2>
<p>If any individual desires to change careers or take on a new challenge in the information technology industry as a web developer, well this is the course that makes it possible. One can acquire the necessary knowledge very quickly, without two and four years of normal academic commitment, and gain the skills they will need to pursue an ever growing and expanding career in the world of Information Technology.</p>
<p>With entry-level salaries starting at $40k per year, web development has become one of the most highly sought after skills today. Employers are always looking for new talent in this field, as it is and will be in-demand a great deal as we progress in the future.</p>
</div>
<div class="container-fluid mt-5 infoArea">
<div class="container">
<div class="row">
<div class="col text-center">
<h1>Full Stack Assessment</h1>
<p>Please take this Assessment prior to registering for the Full Stack Web Development Course</p>
<h2 class="my-2 d-block">Click here to take the Assessment Now!</h2>
<a href="assessmentForm.php">
<button class="mt-2 btn-lg btn-success">Take Assessment</button></a>
</form>
</div>
</div>
</div>
</div>
</div>
</div>
<!-- FLT Banner -->
<div class="container fltBanner">
<div class="row">
<div class="toolBrands text-center">
<h1 class="text-center">Other Frameworks Libraries & Tools</h1>
<img class="img-fluid" src="img/assets/bootstrap.jpg" alt="Twitter Bootstrap">
<img class="img-fluid" src="img/assets/filezilla.jpg" alt="Filezilla">
<img class="img-fluid" src="img/assets/github.jpg" alt="GitHub">
<img class="img-fluid" src="img/assets/jquery.jpg" alt="jQuery">
<img class="img-fluid" src="img/assets/wordpress.jpg" alt="WordPress">
</div>
</div>
</div>
<!-- infoArea&form -->
<div class="container-fluid mt-5 infoArea">
<div class="container">
<div class="row">
<div class="col-12 col-md-6 tests mt-2">
<h2>You Can Code Too!</h2>
<p>Ever wonder what it would be like to harness the web at your finger tips? Want to demystify what computer programming or coding is? Join us in the Full Stack Program! Want some one to contact you?</p>
<p>
Don't let HTML, CSS, and JS remain foreign to you. Learn to process information also know as "data" using PHP & MySQL today.
</p>
</div>
<div class="col-12 col-md-6 text-center form">
<h2>Want More Info?</h2>
<h2><span>Complete This Form!</span></h2>
<form action="scripts/sendContact.php" method="POST">
<input class="col-12 name" placeholder="Your Name" type="text" name="firstname" required>
<input class="col-12 my-2 email" placeholder="Email Address" type="text" name="email" required>
<input class= "col-12 btn btn-success text-center" type="submit" value="Submit">
</form>
</div>
</div>
</div>
</div>
<!-- event section -->
<div class="container events">
<div class="row mt-5">
<h2 class="col-12 text-center">Upcoming Events</h2>
<hr>
<?php foreach ($events as $event) { ?>
<div class="col-md-5 ml-md-auto events">
<h3 class="event-title text-center"><?php echo $event['event_name']; ?><span class="blue"> | </span><span class="event-date"><?php $date = date_create($event['event_date']); echo date_format($date, 'M j'); ?> @ <?php $date = date_create($event['event_date']); echo date_format($date, 'g:ia'); ?></span></h3>
<p><?php echo $event['event_description']; ?></p>
</div>
<?php } ?>
</div>
</div>
<hr>
<!-- git hub banner -->
<div class="bottomBanner">
<div class="container-fluid">
<div class="row">
<div class="col-12 text-center">
<h1 class="text-center">Visit our GitHub Page! <br>Click Below</h1>
<h1 class="arrow">⇣</h1>
<a class="d-block" href="https://github.com/fullstackjs-bhm/OCT2017" target="_blank"><img class="img-fluid" src="img/assets/GitHub image.png"></a>
</div>
</div>
</div>
</div>
<?php
require('includes/footer.php');
?>