-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.php
More file actions
779 lines (764 loc) · 42.2 KB
/
index.php
File metadata and controls
779 lines (764 loc) · 42.2 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
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
<meta name="description" content="">
<meta name="author" content="">
<link rel="icon" href="favicon.ico">
<title>The Common Good Center for Applied Ethics</title>
<!-- Bootstrap core CSS -->
<link href="css/agency.css" rel="stylesheet">
<link href="css/bootstrap.css" rel="stylesheet">
<!-- Custom fonts for this template -->
<link href="vendor/font-awesome/css/font-awesome.min.css" rel="stylesheet" type="text/css">
<link href="https://fonts.googleapis.com/css?family=Montserrat:400,700" rel="stylesheet" type="text/css">
<link href='https://fonts.googleapis.com/css?family=Kaushan+Script' rel='stylesheet' type='text/css'>
<link href='https://fonts.googleapis.com/css?family=Droid+Serif:400,700,400italic,700italic' rel='stylesheet' type='text/css'>
<link href='https://fonts.googleapis.com/css?family=Roboto+Slab:400,100,300,700' rel='stylesheet' type='text/css'>
<!-- Custom styles for this template -->
<link href="styles.css" rel="stylesheet">
</head>
<body id=page-top>
<nav class="navbar navbar-expand navbar-dark bg-dark sticky-top"id="mainNav">
<a class="navbar-brand" href="#page-top">CGC</a>
<button class="navbar-toggler" type="button" data-toggle="collapse" data-target="#navbarsExampleDefault" aria-controls="navbarsExampleDefault" aria-expanded="false" aria-label="Toggle navigation">
<span class="navbar-toggler-icon"></span>
</button>
<div class="collapse navbar-collapse" id="navbarsExampleDefault">
<ul class="navbar-nav mr-auto">
<li class="nav-item active">
<a class="nav-link" href="#page-top">Home <span class="sr-only">(current)</span></a>
</li>
<li class="nav-item">
<a class="nav-link" href="#contact">Contact</a>
</li>
<li class="nav-item">
<a class="nav-link" href="#about">About</a>
</li>
<li class="nav-item dropdown">
<a class="nav-link dropdown-toggle" href="https://thecgc.herokuapp.com" id="dropdown01" data-toggle="dropdown" aria-haspopup="true" aria-expanded="false">Projects</a>
<div class="dropdown-menu" aria-labelledby="dropdown01">
<a class="dropdown-item" data-toggle="modal" href="#portfolioModal1">Medical CME</a>
<a class="dropdown-item" data-toggle="modal" href="#portfolioModal2">Vineyards/Breweries</a>
<a class="dropdown-item" data-toggle="modal" href="#portfolioModal3">Educators</a>
<a class="dropdown-item" data-toggle="modal" href="#portfolioModal4">Businesses</a>
<a class="dropdown-item" data-toggle="modal" href="#portfolioModal5">RGV Community</a>
<a class="dropdown-item" data-toggle="modal" href="#portfolioModal6">Educators</a>
<a class="dropdown-item" data-toggle="modal" href="#portfolioModal7">General Public</a>
</div>
</li>
</ul>
<form class="form-inline my-2 my-lg-0">
<input class="form-control mr-sm-2" type="text" placeholder="Search" aria-label="Search">
<button class="btn btn-outline-success my-2 my-sm-0" type="submit">Search</button>
</form>
</div>
</nav>
<header class="masthead">
<div class="container">
<div class="intro-text">
<div class="intro-lead-in">Ethics is a Pursuit of Inches, Together We Can Go Miles</div>
<div class="intro-heading">The Common Good Center for Applied Ethics</div>
<div class="intro-pad text-muted ">At UTRGV</div>
<a class="btn btn-success js-scroll-trigger" href="#services">Tell Me More</a>
</div>
</div>
</header>
<!-- /.container -->
<!-- Portfolio Grid -->
<section class="bg-light" id="portfolio">
<div class="container">
<div class="row">
<div class="col-lg-12 text-center">
<h3 class="section-subheading text-muted">Click Below For Information on Each of Our Projects</h3>
</div>
</div>
<div class="row">
<div class="col-md-2 col-sm-4 portfolio-item">
<a class="portfolio-link" data-toggle="modal" href="#portfolioModal1">
<div class="portfolio-hover">
<div class="portfolio-hover-content">
<i class="fa fa-plus fa-3x"></i>
</div>
</div>
<img class="img-fluid" src="img\medicine.jpeg" alt="">
</a>
<div class="portfolio-caption">
<h4>Medicine</h4>
<p class="text-muted">Medical Ethics</p>
</div>
</div>
<div class="col-md-2 col-sm-6 portfolio-item">
<a class="portfolio-link" data-toggle="modal" href="#portfolioModal2">
<div class="portfolio-hover">
<div class="portfolio-hover-content">
<i class="fa fa-plus fa-3x"></i>
</div>
</div>
<img class="img-fluid" src="img/vineyard.jpeg" alt="">
</a>
<div class="portfolio-caption">
<h4>Alcohol Industry</h4>
<p class="text-center text-muted">Vineyards/Breweries</p>
</div>
</div>
<div class="col-md-2 col-sm-6 portfolio-item">
<a class="portfolio-link" data-toggle="modal" href="#portfolioModal3">
<div class="portfolio-hover">
<div class="portfolio-hover-content">
<i class="fa fa-plus fa-3x"></i>
</div>
</div>
<img class="img-fluid" src="img/school.jpeg" alt="">
</a>
<div class="portfolio-caption">
<h4>Educators</h4>
<p class="text-muted">Shaping Tomorrow</p>
</div>
</div>
<div class="col-md-2 col-sm-6 portfolio-item">
<a class="portfolio-link" data-toggle="modal" href="#portfolioModal4">
<div class="portfolio-hover">
<div class="portfolio-hover-content">
<i class="fa fa-plus fa-3x"></i>
</div>
</div>
<img class="img-fluid" src="img/texas.png" alt="">
</a>
<div class="portfolio-caption">
<h4>The RGV</h4>
<p class="text-muted">Our Roots</p>
</div>
</div>
<div class="col-md-2 col-sm-6 portfolio-item">
<a class="portfolio-link" data-toggle="modal" href="#portfolioModal5">
<div class="portfolio-hover">
<div class="portfolio-hover-content">
<i class="fa fa-plus fa-3x"></i>
</div>
</div>
<img class="img-fluid" src="img/business.jpeg" alt="">
</a>
<div class="portfolio-caption">
<h4>Businesses</h4>
<p class="text-muted">Progress and Profits</p>
</div>
</div>
<div class="col-md-2 col-sm-6 portfolio-item">
<a class="portfolio-link" data-toggle="modal" href="#portfolioModal6">
<div class="portfolio-hover">
<div class="portfolio-hover-content">
<i class="fa fa-plus fa-3x"></i>
</div>
</div>
<img class="img-fluid" src="img/team.jpeg" alt="">
</a>
<div class="portfolio-caption">
<h4>General</h4>
<p class="text-muted">Why we do what we do.</p>
</div>
</div>
</div>
</div>
</section>
<!-- Services -->
<section id="services">
<div class="container">
<div class="row">
<div class="col-lg-12 text-center">
<h2 class="section-heading">What We are Accomplishing</h2>
<h3 class="section-subheading text-muted">In the Rio Grande Valley and Beyond</h3>
</div>
</div>
<div class="row text-center">
<div class="col-md-4">
<span class="fa-stack fa-4x">
<i class="fa fa-circle fa-stack-2x text-primary"></i>
<i class="fa fa-hospital-o fa-stack-1x fa-inverse"></i>
</span>
<h4 class="service-heading">Medical Ethics</h4>
<p class="text-muted">Preparing the Rio Grande Valley's Medical Professionals for Hard Ethical Choices</p>
</div>
<div class="col-md-4">
<span class="fa-stack fa-4x">
<i class="fa fa-circle fa-stack-2x text-primary"></i>
<i class="fa fa-glass fa-stack-1x fa-inverse"></i>
</span>
<h4 class="service-heading">Vineyards/Breweries</h4>
<p class="text-muted">Raising community standards accross the board for vineyards and breweries to be more than just a tasting experience.</p>
</div>
<div class="col-md-4">
<span class="fa-stack fa-4x">
<i class="fa fa-circle fa-stack-2x text-primary"></i>
<i class="fa fa-book fa-stack-1x fa-inverse"></i>
</span>
<h4 class="service-heading">Educators</h4>
<p class="text-muted">Methodolgies and modulas for educators to create a better generation to come.</p>
</div>
</div>
<!--left off-->
<div class="row text-center">
<div class="col-md-4">
<span class="fa-stack fa-4x">
<i class="fa fa-circle fa-stack-2x text-primary"></i>
<i class="fa fa-shopping-cart fa-stack-1x fa-inverse"></i>
</span>
<h4 class="service-heading">Businesses</h4>
<p class="text-muted">Helping business leaders make better decisions for everyone</p>
</div>
<div class="col-md-4">
<span class="fa-stack fa-4x">
<i class="fa fa-circle fa-stack-2x text-primary"></i>
<i class="fa fa-home fa-stack-1x fa-inverse"></i>
</span>
<h4 class="service-heading">RGV Residents</h4>
<p class="text-muted">Involving our local community in the path to a better Rio Grande Valley</p>
</div>
<div class="col-md-4">
<span class="fa-stack fa-4x">
<i class="fa fa-circle fa-stack-2x text-primary"></i>
<i class="fa fa-heart fa-stack-1x fa-inverse"></i>
</span>
<h4 class="service-heading">The General Public</h4>
<p class="text-muted">See what we're doing now!</p>
</div>
</div>
</div>
</section>
<!-- About -->
<section id="about">
<div class="container">
<div class="row">
<div class="col-lg-12 text-center">
<h2 class="section-heading">About</h2>
<h3 class="section-subheading text-muted">Who We Are</h3>
</div>
</div>
<div class="row">
<div class="col-lg-12">
<ul class="timeline">
<li>
<div class="timeline-image">
<img class="rounded-circle img-fluid" src="img\CGC.png" alt="">
</div>
<div class="timeline-panel">
<div class="timeline-heading">
<h4 class="subheading">The Common Good Center for Applied Ethics</h4>
</div>
<div class="timeline-body">
<p class="text-muted">The Common Good Center (CGC) believes that through engagement with our local and global community –
from our doctors to our educators to our businesses – we can improve our neighborhoods and
planet for this and generations to come. By focusing on the practical application of ethics and standards we hope
to be an anchor and a lighthouse as we strive for a better future. Our current focus is on medical and brewery ethics,
the development of ethical standards and creating an inclusive community hub. </p>
</div>
</div>
</li>
<li class="timeline-inverted">
<div class="timeline-image">
<img class="rounded-circle img-fluid" src="img\Rockin R Initials.png" alt="">
</div>
<div class="timeline-panel">
<div class="timeline-heading">
<h4 class="subheading">The University of Texas Rio Grande Valley</h4>
</div>
<div class="timeline-body">
<p class="text-muted">
The University of Texas Rio Grande Valley (UTRGV) was created by the Texas Legislature in 2013
as the first major public university of the 21st century in Texas. This transformative initiative
provided the opportunity to expand educational opportunities in the Rio Grande Valley, including a
new School of Medicine, and made it possible for residents of the region to benefit from the Permanent
University Fund – a public endowment contributing support to the University of Texas System and other institutions.
</p>
<p class="text-muted">
UTRGV has campuses and off-campus research and teaching sites throughout the Rio Grande Valley including in Boca Chica Beach, Brownsville
(formerly The University of Texas at Brownsville campus), Edinburg (formerly The University of Texas-Pan American campus), Harlingen,
McAllen, Port Isabel, Rio Grande City, and South Padre Island. UTRGV, a comprehensive academic institution, enrolled its first
class in the fall of 2015, and the School of Medicine welcomed its first class in the summer of 2016. – University of Texas Rio
Grande Valley
</p>
</div>
</div>
</li>
<li>
<div class="timeline-image">
<img class="rounded-circle img-fluid" src="img\texas-rgv2.png" alt="">
</div>
<div class="timeline-panel">
<div class="timeline-heading">
<h4 class="subheading">The Rio Grande Valley</h4>
</div>
<div class="timeline-body">
<p class="text-muted">
The Rio Grande Valley (RGV) or the Lower Rio Grande Valley, informally called The Valley, is an area located in the
southernmost tip of South Texas. It lies along the northern bank of the Rio Grande, which separates Mexico from the
United States. The Rio Grande Valley of South Texas is not a valley, but a delta or floodplain containing many oxbow
lakes or resacas formed from pinched-off meanders in earlier courses of the Rio Grande. Early 20th-century land developers,
attempting to capitalize on unclaimed land, utilized the name “Magic Valley” to attract settlers and appeal to investors.
The Rio Grande Valley is also called El Valle, the Spanish translation of “the valley“, by those who live there. The
residents of the Rio Grande Valley occasionally refer to the area as “El Magico Valle del Rio Grande” (“The Magical
Valley of the Rio Grande“), and also simply by the initials RGV . The Rio Grande Valley of South Texas region is made
up of four counties: Starr County, Hidalgo County, Willacy County, and Cameron County. As of January 1, 2012, the U.S.
Census Bureau estimated the population of the Metropolitan Area know as the Rio Grande Valley at 1,305,782. According
to the U.S. Census Bureau in 2008, 86 percent of Cameron County, 90 percent of Hidalgo County, 97 percent of Starr County,
and 86 percent of Willacy County are Hispanic. The largest city in the The Rio Grande Valley of South Texas is Brownsville
(Cameron County), followed by McAllen (Hidalgo County). Other major cities include Edinburg, Mission, Harlingen, Raymondville,
Rio Grande City and Pharr. - The Rio Grande Valley
</p>
</div>
</div>
</li>
</ul>
</div>
</div>
</div>
</section>
<!-- Team -->
<section class="bg-light" id="team">
<div class="container">
<div class="row">
<div class="col-lg-12 text-center">
<h2 class="section-heading">Our Director and Affliates</h2>
</div>
</div>
<div class="row">
<div class="col-sm-4">
<div class="team-member">
<img class="mx-auto rounded-circle" src="img/team/1.jpg" alt="">
<h4>Kay Garland</h4>
<p class="text-muted">Random Place Holder</p>
<ul class="list-inline social-buttons">
<li class="list-inline-item">
<a href="#">
<i class="fa fa-twitter"></i>
</a>
</li>
<li class="list-inline-item">
<a href="#">
<i class="fa fa-facebook"></i>
</a>
</li>
<li class="list-inline-item">
<a href="#">
<i class="fa fa-linkedin"></i>
</a>
</li>
</ul>
</div>
</div>
<div class="col-sm-4">
<div class="team-member">
<img class="mx-auto rounded-circle" src="img/werkheiser.jpg" alt="">
<h4>Ian Werkheiser</h4>
<p class="text-muted">Director</p>
<ul class="list-inline social-buttons">
<li class="list-inline-item">
<a href="#">
<i class="fa fa-twitter"></i>
</a>
</li>
<li class="list-inline-item">
<a href="#">
<i class="fa fa-facebook"></i>
</a>
</li>
<li class="list-inline-item">
<a href="#">
<i class="fa fa-linkedin"></i>
</a>
</li>
</ul>
</div>
</div>
<div class="col-sm-4">
<div class="team-member">
<img class="mx-auto rounded-circle" src="img/team/3.jpg" alt="">
<h4>Random Place Holder</h4>
<p class="text-muted">Lead Developer</p>
<ul class="list-inline social-buttons">
<li class="list-inline-item">
<a href="#">
<i class="fa fa-twitter"></i>
</a>
</li>
<li class="list-inline-item">
<a href="#">
<i class="fa fa-facebook"></i>
</a>
</li>
<li class="list-inline-item">
<a href="#">
<i class="fa fa-linkedin"></i>
</a>
</li>
</ul>
</div>
</div>
</div>
<div class="row">
<div class="col-lg-8 mx-auto text-center">
<h3 class="section-subheading text-muted">Directors Message.</h3>
<p class="large text-muted">Insert directors message.</p>
</div>
</div>
</div>
</section>
<!-- Contact -->
<section id="contact">
<div class="container">
<div class="row">
<div class="col-lg-12 text-center">
<h2 class="section-heading">Contact Us</h2>
<h3 class="section-subheading text-muted">We're Happy to hear from you!</h3>
</div>
</div>
<div class="row">
<div class="col-lg-12">
<form id="contactForm" name="sentMessage" novalidate>
<div class="row">
<div class="col-md-6">
<div class="form-group">
<input class="form-control" id="name" type="text" placeholder="Your Name *" required data-validation-required-message="Please enter your name.">
<p class="help-block text-danger"></p>
</div>
<div class="form-group">
<input class="form-control" id="email" type="email" placeholder="Your Email *" required data-validation-required-message="Please enter your email address.">
<p class="help-block text-danger"></p>
</div>
<div class="form-group">
<input class="form-control" id="phone" type="tel" placeholder="Your Phone *" required data-validation-required-message="Please enter your phone number.">
<p class="help-block text-danger"></p>
</div>
</div>
<div class="col-md-6">
<div class="form-group">
<textarea class="form-control" id="message" placeholder="Your Message *" required data-validation-required-message="Please enter a message."></textarea>
<p class="help-block text-danger"></p>
</div>
</div>
<div class="clearfix"></div>
<div class="col-lg-12 text-center">
<div id="success"></div>
<button id="sendMessageButton" class="btn btn-xl" type="submit">Send Message</button>
</div>
</div>
</form>
</div>
</div>
</div>
</section>
<!-- Footer -->
<footer>
<div class="container">
<div class="row">
<div class="col-md-4">
<span class="copyright">Copyright © CGC</span>
</div>
<div class="col-md-4">
<ul class="list-inline social-buttons">
<li class="list-inline-item">
<a href="#">
<i class="fa fa-twitter"></i>
</a>
</li>
<li class="list-inline-item">
<a href="#">
<i class="fa fa-facebook"></i>
</a>
</li>
<li class="list-inline-item">
<a href="#">
<i class="fa fa-linkedin"></i>
</a>
</li>
</ul>
</div>
<div class="col-md-4">
<ul class="list-inline quicklinks">
<li class="list-inline-item">
<a href="#">Privacy Policy</a>
</li>
<li class="list-inline-item">
<a href="#">Terms of Use</a>
</li>
</ul>
</div>
</div>
</div>
</footer>
<!-- Portfolio Modals -->
<!-- Modal 1 -->
<div class="portfolio-modal modal fade" id="portfolioModal1" tabindex="-1" role="dialog" aria-hidden="true">
<div class="modal-dialog">
<div class="modal-content">
<div class="close-modal" data-dismiss="modal">
<div class="lr">
<div class="rl"></div>
</div>
</div>
<div class="container">
<div class="row">
<div class="col-lg-8 mx-auto">
<div class="modal-body">
<!-- Project Details Go Here -->
<h2>Medical Ethics</h2>
<p class="item-intro text-muted">CME Credits</p>
<img class="img-fluid d-block mx-auto" src="img/medicine - copy.jpeg" alt="">
<p>We are on the way to starting CME Ethics classes! Sign Up for updates.</p>
<ul class="list-inline">
<li>Date: January 2017</li>
<li>Category: Medical</li>
</ul>
<form>
<div class="form-group">
<label for="exampleInputEmail1">Email address</label>
<input type="email" class="form-control" id="exampleInputEmail1" aria-describedby="emailHelp" placeholder="Enter email">
<small id="emailHelp" class="form-text text-muted">We'll never share your email with anyone else.</small>
</div>
<div class="form-check">
<label class="form-check-label">
<input type="checkbox" class="form-check-input">
Sign Me Up
</label>
</div>
<button type="submit" class="btn btn-primary">Submit</button>
</form>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
<!-- Modal 2 -->
<div class="portfolio-modal modal fade" id="portfolioModal2" tabindex="-1" role="dialog" aria-hidden="true">
<div class="modal-dialog">
<div class="modal-content">
<div class="close-modal" data-dismiss="modal">
<div class="lr">
<div class="rl"></div>
</div>
</div>
<div class="container">
<div class="row">
<div class="col-lg-8 mx-auto">
<div class="modal-body">
<!-- Project Details Go Here -->
<h2>Alcohol Industry</h2>
<p class="item-intro text-muted">Vineyards and Breweries.</p>
<img class="img-fluid d-block mx-auto" src="img/vineyard-full.jpeg" alt="">
<p>We are preparing to start certifying vineyards and breweries for ethics! Sign up for updates.</p>
<ul class="list-inline">
<li>Date: October 2017</li>
<li>Category: Alcohol Industry</li>
</ul>
<form>
<div class="form-group">
<label for="exampleInputEmail1">Email address</label>
<input type="email" class="form-control" id="exampleInputEmail1" aria-describedby="emailHelp" placeholder="Enter email">
<small id="emailHelp" class="form-text text-muted">We'll never share your email with anyone else.</small>
</div>
<div class="form-check">
<label class="form-check-label">
<input type="checkbox" class="form-check-input">
Sign Me Up
</label>
</div>
<button type="submit" class="btn btn-primary">Submit</button>
</form>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
<!-- Modal 3 -->
<div class="portfolio-modal modal fade" id="portfolioModal3" tabindex="-1" role="dialog" aria-hidden="true">
<div class="modal-dialog">
<div class="modal-content">
<div class="close-modal" data-dismiss="modal">
<div class="lr">
<div class="rl"></div>
</div>
</div>
<div class="container">
<div class="row">
<div class="col-lg-8 mx-auto">
<div class="modal-body">
<!-- Project Details Go Here -->
<h2>Educators</h2>
<p class="item-intro text-muted">Lorem ipsum dolor sit amet consectetur.</p>
<img class="img-fluid d-block mx-auto" src="img/school - copy.jpeg" alt="">
<p>We're in the process of creating modules for educator use! Sign Up Below for updates.</p>
<ul class="list-inline">
<li>Date: October 2017</li>
<li>Category: Educators</li>
</ul>
<form>
<div class="form-group">
<label for="exampleInputEmail1">Email address</label>
<input type="email" class="form-control" id="exampleInputEmail1" aria-describedby="emailHelp" placeholder="Enter email">
<small id="emailHelp" class="form-text text-muted">We'll never share your email with anyone else.</small>
</div>
<div class="form-check">
<label class="form-check-label">
<input type="checkbox" class="form-check-input">
Sign Me Up
</label>
</div>
<button type="submit" class="btn btn-primary">Submit</button>
</form>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
<!-- Modal 4 -->
<div class="portfolio-modal modal fade" id="portfolioModal4" tabindex="-1" role="dialog" aria-hidden="true">
<div class="modal-dialog">
<div class="modal-content">
<div class="close-modal" data-dismiss="modal">
<div class="lr">
<div class="rl"></div>
</div>
</div>
<div class="container">
<div class="row">
<div class="col-lg-8 mx-auto">
<div class="modal-body">
<!-- Project Details Go Here -->
<h2>RGV Residents</h2>
<p class="item-intro text-muted">Lorem ipsum dolor sit amet consectetur.</p>
<img class="img-fluid d-block mx-auto" src="img/texas - copy.png" alt="">
<p>We are committed to making our neighborhood a better place. Sign up for updates on future local projects!</p>
<ul class="list-inline">
<li>Date: October 2017</li>
<li>Category: RGVg</li>
</ul>
<form>
<div class="form-group">
<label for="exampleInputEmail1">Email address</label>
<input type="email" class="form-control" id="exampleInputEmail1" aria-describedby="emailHelp" placeholder="Enter email">
<small id="emailHelp" class="form-text text-muted">We'll never share your email with anyone else.</small>
</div>
<div class="form-check">
<label class="form-check-label">
<input type="checkbox" class="form-check-input">
Sign Me Up
</label>
</div>
<button type="submit" class="btn btn-primary">Submit</button>
</form>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
<!-- Modal 5 -->
<div class="portfolio-modal modal fade" id="portfolioModal5" tabindex="-1" role="dialog" aria-hidden="true">
<div class="modal-dialog">
<div class="modal-content">
<div class="close-modal" data-dismiss="modal">
<div class="lr">
<div class="rl"></div>
</div>
</div>
<div class="container">
<div class="row">
<div class="col-lg-8 mx-auto">
<div class="modal-body">
<!-- Project Details Go Here -->
<h2>Businesses</h2>
<p class="item-intro text-muted">Progress and Profits</p>
<img class="img-fluid d-block mx-auto" src="img\business - full.jpeg" alt="">
<p>Sign up to recieve updates about business ethics from the CGC!</p>
<ul class="list-inline">
<li>Date: October 2017</li>
<li>Category: Businesses</li>
</ul>
<form>
<div class="form-group">
<label for="exampleInputEmail1">Email address</label>
<input type="email" class="form-control" id="exampleInputEmail1" aria-describedby="emailHelp" placeholder="Enter email">
<small id="emailHelp" class="form-text text-muted">We'll never share your email with anyone else.</small>
</div>
<div class="form-check">
<label class="form-check-label">
<input type="checkbox" class="form-check-input">
Sign Me Up
</label>
</div>
<button type="submit" class="btn btn-primary">Submit</button>
</form>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
<!-- Modal 6 -->
<div class="portfolio-modal modal fade" id="portfolioModal6" tabindex="-1" role="dialog" aria-hidden="true">
<div class="modal-dialog">
<div class="modal-content">
<div class="close-modal" data-dismiss="modal">
<div class="lr">
<div class="rl"></div>
</div>
</div>
<div class="container">
<div class="row">
<div class="col-lg-8 mx-auto">
<div class="modal-body">
<!-- Project Details Go Here -->
<h2>General</h2>
<p class="item-intro text-muted">Public</p>
<img class="img-fluid d-block mx-auto" src="img/community - copy.jpeg" alt="">
<p>Sign up for general updates below or visit our about page!</p>
<ul class="list-inline">
<li>Date: October 2017</li>
<li>Category: General</li>
</ul>
<form>
<div class="form-group">
<label for="exampleInputEmail1">Email address</label>
<input type="email" class="form-control" id="exampleInputEmail1" aria-describedby="emailHelp" placeholder="Enter email">
<small id="emailHelp" class="form-text text-muted">We'll never share your email with anyone else.</small>
</div>
<div class="form-check">
<label class="form-check-label">
<input type="checkbox" class="form-check-input">
Sign Me Up
</label>
</div>
<button type="submit" class="btn btn-primary">Submit</button>
</form>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
<!-- Bootstrap core JavaScript
================================================== -->
<!-- Placed at the end of the document so the pages load faster -->
<!-- Bootstrap core JavaScript -->
<script src="vendor/jquery/jquery.min.js"></script>
<script src="vendor/popper/popper.min.js"></script>
<script src="vendor/bootstrap/js/bootstrap.min.js"></script>
<!-- Plugin JavaScript -->
<script src="vendor/jquery-easing/jquery.easing.min.js"></script>
<!-- Contact form JavaScript -->
<script src="js/jqBootstrapValidation.js"></script>
<script src="js/contact_me.js"></script>
<!-- Custom scripts for this template -->
<script src="js/agency.min.js"></script>
</body>
</html>