-
Notifications
You must be signed in to change notification settings - Fork 12
/
Copy pathindex.php
1087 lines (946 loc) · 42.5 KB
/
index.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
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
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
<?php
include('config.php');
/* Subscribe */
if ( isset( $_POST['submit1'] ) )
{
$dt = date("Y-m-d H:i:s");
$ip = $_SERVER["REMOTE_ADDR"];
/* Name */
$name = filter_var($_POST['name'], FILTER_SANITIZE_STRING);
/* Email */
$email = filter_var($_POST['email'], FILTER_SANITIZE_EMAIL);
/* Send to DB */
mysqli_query($con,"INSERT INTO subscribers (ip, dt, firstname, email)
VALUES ('$ip', '$dt', '$name', '$email')");
header("location: thanks.html");
exit();
}
else if ( isset( $_POST['submit2'] ) ) /* CONNECT */
{
$dt = date("Y-m-d H:i:s");
$ip = $_SERVER["REMOTE_ADDR"];
/* Name */
$name = filter_var($_POST['name'], FILTER_SANITIZE_STRING);
/* Business Name */
$businessname = filter_var($_POST['businessname'], FILTER_SANITIZE_STRING);
/* Email */
$email = filter_var($_POST['email'], FILTER_SANITIZE_EMAIL);
/* Phone */
$phone = filter_var($_POST['phone'], FILTER_SANITIZE_NUMBER_INT);
/* Comments */
$comments = filter_var($_POST['comments'], FILTER_SANITIZE_STRING);
/* Send to DB */
mysqli_query($con,"INSERT INTO connect (ip, dt, firstname, businessname, email, phone, comments)
VALUES ('$ip', '$dt', '$name', '$businessname', '$email', '$phone', '$comments')");
header("location: thanks.html");
exit();
}
else if ( isset( $_POST['startsubmit'] ) ) /* START */
{
$dt = date("Y-m-d H:i:s");
$ip = $_SERVER["REMOTE_ADDR"];
/* First Name */
$firstname = filter_var($_POST['firstname'], FILTER_SANITIZE_STRING);
/* Last name */
$lastname = filter_var($_POST['lastname'], FILTER_SANITIZE_STRING);
/* Business name */
$businessname = filter_var($_POST['businessname'], FILTER_SANITIZE_STRING);
/* Email */
$email = filter_var($_POST['email'], FILTER_SANITIZE_EMAIL);
/* About */
$about = filter_var($_POST['about'], FILTER_SANITIZE_STRING);
/* How Did you Hear About Us? */
$referrer = filter_var($_POST['referrer'], FILTER_SANITIZE_STRING);
/* Say Hello */
$mainservice = filter_var($_POST['sayhello'], FILTER_SANITIZE_STRING);
/* Send to DB */
mysqli_query($con,"INSERT INTO start (form, ip, dt, firstname, lastname, businessname, email, about, referrer, mainservice)
VALUES ('start', '$ip','$dt', '$firstname', '$lastname', '$businessname', '$email', '$about', '$referrer', '$mainservice')");
header("location: thanks.html");
exit();
}
else if ( isset( $_POST['worksubmit'] ) ) /* WORK */
{
$dt = date("Y-m-d H:i:s");
$ip = $_SERVER["REMOTE_ADDR"];
/* First Name */
$firstname = filter_var($_POST['firstname'], FILTER_SANITIZE_STRING);
/* Last name */
$lastname = filter_var($_POST['lastname'], FILTER_SANITIZE_STRING);
/* Business name */
$businessname = filter_var($_POST['businessname'], FILTER_SANITIZE_STRING);
/* Email */
$email = filter_var($_POST['email'], FILTER_SANITIZE_EMAIL);
/* About */
$about = filter_var($_POST['about'], FILTER_SANITIZE_STRING);
/* How Did you Hear About Us? */
$referrer = filter_var($_POST['referrer'], FILTER_SANITIZE_STRING);
/* main service */
$mainservice = filter_var($_POST['mainservice'], FILTER_SANITIZE_STRING);
/* Start Up Kit */
$startupkit = filter_var($_POST['workstartupkit'], FILTER_SANITIZE_STRING);
/* Office Assistant */
$officeassistant = filter_var($_POST['workofficeassistant'], FILTER_SANITIZE_STRING);
/* Retail Solution */
$retailsolution = filter_var($_POST['workretailsolution'], FILTER_SANITIZE_STRING);
/* Send to DB */
mysqli_query($con,"INSERT INTO work (form, ip, dt, firstname, lastname, businessname, email, about, referrer, mainservice, startupkit, officeassistant, retailsolution)
VALUES ('work', '$ip','$dt', '$firstname', '$lastname', '$businessname', '$email', '$about', '$referrer', '$mainservice', '$startupkit', '$officeassistant', '$retailsolution')");
header("location: thanks.html");
exit();
}
else if ( isset( $_POST['sellsubmit'] ) ) /* SELL */
{
$dt = date("Y-m-d H:i:s");
$ip = $_SERVER["REMOTE_ADDR"];
/* First Name */
$firstname = filter_var($_POST['firstname'], FILTER_SANITIZE_STRING);
/* Last name */
$lastname = filter_var($_POST['lastname'], FILTER_SANITIZE_STRING);
/* Business name */
$businessname = filter_var($_POST['businessname'], FILTER_SANITIZE_STRING);
/* Email */
$email = filter_var($_POST['email'], FILTER_SANITIZE_EMAIL);
/* About */
$about = filter_var($_POST['about'], FILTER_SANITIZE_STRING);
/* How Did you Hear About Us? */
$referrer = filter_var($_POST['referrer'], FILTER_SANITIZE_STRING);
/* main service */
$mainservice = filter_var($_POST['mainservice'], FILTER_SANITIZE_STRING);
/* Start Up Kit */
$startupkit = filter_var($_POST['sellstartupkit'], FILTER_SANITIZE_STRING);
/* Office Assistant */
$officeassistant = filter_var($_POST['sellofficeassistant'], FILTER_SANITIZE_STRING);
/* Retail Solution */
$retailsolution = filter_var($_POST['sellretailsolution'], FILTER_SANITIZE_STRING);
/* Send to DB */
mysqli_query($con,"INSERT INTO sell (form, ip, dt, firstname, lastname, businessname, email, about, referrer, mainservice, startupkit, officeassistant, retailsolution)
VALUES ('sell', '$ip', '$dt', '$firstname', '$lastname', '$businessname', '$email', '$about', '$referrer', '$mainservice', '$startupkit', '$officeassistant', '$retailsolution')");
header("location: thanks.html");
exit();
}
else if ( isset( $_POST['transfersubmit'] ) ) /* TRANSFER */
{
$dt = date("Y-m-d H:i:s");
$ip = $_SERVER["REMOTE_ADDR"];
/* First Name */
$firstname = filter_var($_POST['firstname'], FILTER_SANITIZE_STRING);
/* Last name */
$lastname = filter_var($_POST['lastname'], FILTER_SANITIZE_STRING);
/* Business name */
$businessname = filter_var($_POST['businessname'], FILTER_SANITIZE_STRING);
/* Email */
$email = filter_var($_POST['email'], FILTER_SANITIZE_EMAIL);
/* About */
$about = filter_var($_POST['about'], FILTER_SANITIZE_STRING);
/* How Did you Hear About Us? */
$referrer = filter_var($_POST['referrer'], FILTER_SANITIZE_STRING);
/* main service */
$mainservice = filter_var($_POST['mainservice'], FILTER_SANITIZE_STRING);
/* Send to DB */
mysqli_query($con,"INSERT INTO transfer (form, ip, dt, firstname, lastname, businessname, email, about, referrer, mainservice)
VALUES ('transfer', '$ip', '$dt', '$firstname', '$lastname', '$businessname', '$email', '$about', '$referrer', '$mainservice')");
header("location: thanks.html");
exit();
};
mysqli_close($con);
?>
<!doctype html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>THE TRANSFER STATION</title>
<link rel="stylesheet" href="css/bootstrap.css">
<link rel="stylesheet" href="normalize.css">
<link rel="stylesheet" href="style.css">
<link rel="shortcut icon" href="images/xfr.gif">
<!--[if lt IE 9]>
<script type="text/javascript">
window.location = "ie8.html";
</script>
<![endif]-->
<script src="jquery.js"></script>
<script src="js/bootstrap.js"></script>
<script src="modernizr.js"></script>
<link rel="image_src" href="http://www.thexfr.org/images/xfr.png" / >
<meta property="og:image" content="http://www.thexfr.org/images/logo.jpg" />
<meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=1">
<meta name="description" content="An innovative resource center for artists and entrepreneurs and a unique venue for the community they inspire."
</head>
<body data-spy="scroll" data-target="nav">
<a name="top" class="marker"></a>
<header>
<div class="content">
<img src="images/xfr.png" id="xfr" alt="XFR">
<div id="welcome">WELCOME TO</div>
<img src="images/thetransferstation.png" alt="THE TRANSFER STATION">
<article id="tagline">
<div id="innovative">an innovative resource center for artists and entrepreneurs,</div>
<div id="unique">and a unique venue for the community they inspire.</div>
</article>
<div id="inputs">
<form id="topform" method="post" action="<?php echo htmlentities($_SERVER['PHP_SELF']);?>">
<input type="text" name="name" placeholder="YOUR NAME">
<input type="text" name="email" placeholder="YOUR EMAIL">
<input type="submit" name="submit1" id="submit1" value="SUBSCRIBE TO UPDATES">
</form>
<a target="_blank" class="facebook" href="http://www.facebook.com/thexfr"><img src="images/facebook.jpg" alt="FACEBOOK"></a>
<a target="_blank" href="http://www.twitter.com/thexfr"><img src="images/twitter.jpg" alt="TWITTER"></a>
</div>
</div>
</header>
<div id="navbttnwrapper"><div id="navbttn"></div></div>
<nav>
<div id="sticky_navigation_wrapper">
<div id="sticky_navigation">
<!-- <div class="content"> -->
<ul class="nav">
<li id="about1"><a href="#" id="aboutnav">ABOUT</a></li>
<li><a href="#" id="layoutnav">THE LAYOUT</a></li>
<li><a href="#" id="membershipnav">MEMBERSHIP</a></li>
<li><a href="#" id="connectnav">CONNECT</a></li>
<li><a target="_blank" href="http://blog.thexfr.org">BLOG</a></li>
<li id="subscribe1"><a href="#" id="topnav">SUBSCRIBE TO UPDATES</a></li>
</ul>
<!-- </div> -->
</div>
</div>
</nav>
<section id="smallspaces">
<div class="smallspaces">SMALL SPACES. <br>BIG IDEAS.</div>
</section>
<a name="about" class="marker"></a>
<section id="about">
<div class="content clearfix">
<div class="column left">
<div class="inner">
<h1>ABOUT XFR</h1>
<p>Welcome to The Transfer Station (THEXFR), an innovative resource center for artists and entrepreneurs and a unique venue for the community they inspire. Located on Main Street in Manayunk, The Transfer Station offers tailor-made spaces and customized support services for bringing ideas to life. Our curated retail marketplace, co-working spaces, creative labs, artist studios, kitchen share and garden cafe make for the ideal setting to work, sell, create, and collaborate with like-minded individuals. Above all, The Transfer Station is a place to start.</p>
<p class="ctas">JOIN THE CONVERSATION ON <a href="http://www.facebook.com/thetransferstation">FACEBOOK</a> AND <a href="http://www.twitter.com/thetransferstation">TWITTER</a></p>
</div>
</div>
<div class="column right">
<div class="inner">
<h1>GET INVOLVED</h1>
<p>Our concept for The Transfer Station has been in development for years; now it's finally time to bring it to life! In order to move forward, we need you - the community - to let us know what you think and give us feedback regarding which aspects appeal to you most. By generating interest and encouraging participation through this website, we can all directly influence how soon The Transfer Station is able to open its doors and what the concept ultimately evolves into. We ask you to explore this website, let us know what you're most interested in, and help spread the word!</p>
<p class="ctas">GET STARTED WITH OUR <a href="#membership">QUESTIONNAIRE</a> BELOW</p>
</div>
</div>
</div>
</section>
<section id="iamhereto">
<div class="content clearfix">
<div id="ohhello">OH HELLO. I'M JUST HERE TO</div>
<ul id="nav2">
<li><a>JOIN</a></li>
<li><a>WORK</a></li>
<li><a>SELL</a></li>
<li><a>TRANSFER</a></li>
<li><a>RINSE</a></li>
<li><a>REPEAT</a></li>
</ul>
</div>
</section>
<section id="chair">
</section>
<a name="layout" class="marker"></a>
<section id="layout">
<div class="layoutP">
<div class="inner">
<h1>THE LAYOUT</h1>
<p>Our facility has been designed with adaptive reuse at its core - completely retrofitting an unfinished industrial building in the heart of Philadelphia's Manayunk neighborhood to accommodate a mix of working, making, learning, selling, and collaborating. Our spaces are designed to be as comfortable as they are impactful, creating a warm and friendly facility in which you can make your best first impression.</p>
<p><span class="bold">EXPLORE OUR DESIGNS BELOW</span></p>
</div>
</div>
<div class="content clearfix">
<article id="depts" class="clearfix">
<div class="dept">
<h2>MICRORETAIL</h2>
<h3>LEVEL 1 / RETAIL</h3>
<img src="images/microretail.png" alt="Microretail">
<p>Completely customizable, unbelievably affordable. Our two-story collaborative retail gallery is an expanse of small, highly-modifiable storefronts designed around your needs. Whether you want to expand or just get started, we're making Main Street retail affordable again.
</p>
<a target="_blank" href="http://www.facebook.com/thexfr" class="learnmore">< LEARN MORE ></a>
<a href="https://www.facebook.com/sharer/sharer.php?u=http://www.thexfr.org" target="_blank" class="tellafriend">> TELL A FRIEND <</a>
</div>
<div class="dept">
<h2>WORKNEST</h2>
<h3>LEVEL 2 / OFFICE</h3>
<img src="images/worknest.png" alt="">
<p>Co-working comes to Main Street! With a collection of private offices, a bank of open desk space, and a complete ecosystem of shared amenities, our co-working spaces have been designed to encourage and support all manner of business needs in an inviting and engaging environment.</p>
<a target="_blank" href="http://www.facebook.com/thexfr" class="learnmore">< LEARN MORE ></a>
<a href="https://www.facebook.com/sharer/sharer.php?u=http://www.thexfr.org" target="_blank" class="tellafriend">> TELL A FRIEND <</a>
</div>
<div class="dept">
<h2>FLEXHALL</h2>
<h3>LEVEL 3 / EVENT</h3>
<img src="images/flexhall.png" alt="">
<p>Poised directly beneath the forthcoming Manayunk Bridge Park, our beautiful third-floor atrium is a premier location in which to learn, to share, to create, and to perform. Our flexible event spaces, classrooms, rehearsal, and makerspaces are limited only by the imaginations of our members!</p>
<a target="_blank" href="http://www.facebook.com/thexfr" class="learnmore">< LEARN MORE ></a>
<a href="https://www.facebook.com/sharer/sharer.php?u=http://www.thexfr.org" target="_blank" class="tellafriend">> TELL A FRIEND <</a>
</div>
<div class="dept">
<h2>XFRCRTV</h2>
<h3>LEVEL 0 / CREATIVE</h3>
<img src="images/xfrcrtv.png" alt="">
<p>Transfer Creative (XFRCRTV) is a strategic branding agency, reinvented for today's small business economy. By leveraging both our creative team and our in-house production facilities, we help to actualize transformative experiences through carefully crafted media.
</p>
<a target="_blank" href="http://www.facebook.com/thexfr" class="learnmore">< LEARN MORE ></a>
<a href="https://www.facebook.com/sharer/sharer.php?u=http://www.thexfr.org" target="_blank" class="tellafriend">> TELL A FRIEND <</a>
</div>
</article>
</div>
</section>
<section id="transferhere">
<div class="smallspaces">TRANSFER<br>HERE</div>
</section>
<a name="membership" class="marker"></a>
<section id="membership">
<div class="content clearfix">
<div class="layoutP">
<div class="inner">
<h1>MEMBERSHIP</h1>
</div>
</div>
<div class="column left">
<div class="inner">
<p>With the interactive form below, we hope to gain some insight into how we can best serve you and your work/life needs. No matter your level of interest, from the "sign me up now" forward-thinkers to the "keep me up-to-date on your progress" casually-intrigued, we encourage you to fill out this form simply to let us know what appeals to you most about The Transfer Station. </p>
</div>
</div>
<div class="column right">
<div class="inner">
<p class="yellow">Please fill out this non-binding questionnaire to ensure your place in the community.<br>Space is limited!</p>
<div id="iwant">TO BEGIN, SELECT ONE OF THE FOUR OPTIONS BELOW...</div>
</div>
</div>
</div>
</section>
<section id="options">
<div class="content clearfix">
<div class="option topoption" id="start">
<div class="inner">
<button type="button" class="choice1 collapsed">SAY HELLO</button>
</div>
</div>
<div class="option topoption" id="work">
<div class="inner">
<button type="button" class="choice1 collapsed">WORK</button>
</div>
</div>
<div class="option topoption" id="sell">
<div class="inner">
<button type="button" class="choice1 collapsed">SELL</button>
</div>
</div>
<div class="option topoption" id="transfer">
<div class="inner">
<button type="button" class="choice1 collapsed">TRANSFER</button>
</div>
</div>
</div>
<!---#transferstuff---->
<div class="transfer-wrap">
<article id="transferstuff">
<div class="content clearfix">
<form method="post" action="<?php echo htmlentities($_SERVER['PHP_SELF']);?>" id="inputs4">
<div class="option">
<div class="inner">
<h2>1. LEARN</h2>
<div class="box">
<p>One of the core tenets of the XFR concept is self-development. We're offering a myriad of ways to learn, grow, and experience something new through lectures, hands-on workshops, and individual lessons. Let us know what you want to learn!</p>
<div class="price">SUBSCRIBE AND SHARE</div>
</div>
<div class="selectbox clearfix"><span class="selectthis">SELECT THIS</span><input type="radio" name="mainservice" value="learn" id="learn"><label for="learn"><span class="transferbttn2"></span></label></div>
</div>
</div>
<div class="option">
<div class="inner">
<h2>2. SHARE</h2>
<div class="box">
<p>Are you an expert in your field and love to share? Join our group of teachers and sign up to give lectures, workshops, or individual lessons - we're looking for expertise in any and every field, no matter how obscure it may seem.</p>
<div class="price">SUBSCRIBE AND SHARE</div>
</div>
<div class="selectbox clearfix"><span class="selectthis">SELECT THIS</span><input type="radio" name="mainservice" value="share" id="share"><label for="share"><span class="transferbttn2"></span></label>
</div>
</div>
</div>
<div class="option">
<div class="inner">
<h2>3. CREATE</h2>
<div class="box">
<p> Between our small-batch kitchen, our creative media production studio, and our sister facility MAKESH/FT (a full-service maker lab), we have the resources to help bring your ideas to life. Get your creations started at the XFR!</p>
<div class="price">SUBSCRIBE AND SHARE</div>
</div>
<div class="selectbox clearfix"><span class="selectthis">SELECT THIS</span><input type="radio" name="mainservice" value="create" id="create"><label for="create"><span class="transferbttn2"></span></label></div>
</div>
</div>
<div class="option">
<div class="inner">
<h2>4. PERFORM</h2>
<div class="box">
<p>As beautiful as our performance and rehearsal venues are, they need you to bring them to life. If you're looking for a performance venue or unique event space, let us know if you think our facilities would be the right fit!</p>
<div class="price">SUBSCRIBE AND SHARE</div>
</div>
<div class="selectbox clearfix"><span class="selectthis">SELECT THIS</span><input type="radio" name="mainservice" value="perform" id="perform"><label for="perform"><span class="transferbttn2"></span></label></div>
</div>
</div>
</div>
<div id="transfermore">
<div class="content clearfix">
<div class="inner">
<div class="toprow">
<input type="text" name="firstname" placeholder="FIRST NAME" class="topz names topz1">
<input type="text" name="lastname" placeholder="LAST NAME" class="topz names">
<input type="text" name="businessname" placeholder="BUSINESS NAME" class="topz names topz1">
<input type="text" name="email" placeholder="EMAIL ADDRESS" class="topz rightz"> </div>
<textarea name="about" placeholder="QUESTIONS OR COMMENTS? (OPTIONAL)" class="comments"></textarea>
<textarea name="referrer" placeholder="HOW DID YOU HEAR ABOUT THEXFR (OPTIONAL)" class="comments rightz comments2"></textarea>
<input type="submit" name ="transfersubmit" class="submit3" value="ALL DONE! SUBMIT AND SHARE!">
</form>
</div>
</article>
</div>
<!---end #transferstuff---->
<!---#sellstuff---->
<div class="sell-wrap">
<article id="sellstuff" class="wrap">
<div class="content clearfix">
<form method="post" action="<?php echo htmlentities($_SERVER['PHP_SELF']);?>" id="inputs3">
<div class="option">
<div class="inner">
<h2>1. GALLERY WALL</h2>
<div class="box">
<p> Your own gallery space on Main Street! The XFR curated gallery is changing how local artist will show and sell their work by offering highly-desirable display space with no gallery fees and no strings attached! </p>
<div class="price">FROM $45 PER MONTH</div>
</div>
<div class="selectbox clearfix"><span class="selectthis">SELECT THIS</span><input type="radio" name="mainservice" value="gallerywall" id="gallerywall"><label for="gallerywall"><span class="sellbttn2"></span></label></div>
</div>
</div>
<div class="option">
<div class="inner">
<h2>2. DISPLAY CASE</h2>
<div class="box">
<p> Making retail on Main Street possible. The main two story volume at the XFR is our curated collaborative gallery, providing a completely new way for individual artists and small businesses to have an affordable retail showcase on Main Street. </p>
<div class="price">FROM $245 PER MONTH</div>
</div>
<div class="selectbox clearfix"><span class="selectthis">SELECT THIS</span><input type="radio" name="mainservice" value="displaycase" id="displaycase"><label for="displaycase"><span class="sellbttn2"></span></label></div>
</div>
</div>
<div class="option">
<div class="inner">
<h2>3. RETAIL STORE</h2>
<div class="box">
<p> Completely customizable, unbelievably affordable. Whether you're just starting out or already have an existing operation that needs to expand or downscale, our XFR retail pods are changing how retail is done in Philadelphia.</p>
<div class="price">FROM $345 PER MONTH</div>
</div>
<div class="selectbox clearfix"><span class="selectthis">SELECT THIS</span><input type="radio" name="mainservice" value="retailstore" id="retailstore"><label for="retailstore"><span class="sellbttn2"></span></label></div>
</div>
</div>
<div class="option">
<div class="inner">
<h2>4. CUSTOMIZE</h2>
<div class="box">
<p> Your store-front dream on Main Street. Our architectural team has designed our spaces with flexibility in mind to best accommodate your individual needs. Let us know what your ideal storefront looks like, and we'll build it together. </p>
<div class="price">NAME YOUR PRICE</div>
</div>
<div class="selectbox clearfix"><span class="selectthis">SELECT THIS</span><input type="radio" name="mainservice" value="customize" id="sellcustomize"><label for="sellcustomize"><span class="sellbttn2"></span></label></div>
</div>
</div>
</div>
<div id="sellmore" class="options2">
<div class="content clearfix">
<div class="inner">
<div class="option2">
<div class="heading clearfix">
<div class="headingLeft">
<h1>+ THE XFR STARTUP KIT</h1>
<span class="addthis">ADD THIS</span>
</div>
<input type="checkbox" name="sellstartupkit" value="1" id="sellstartupkit"><label for="sellstartupkit"><span></span></label>
</div>
<div class="info clearfix">
<div class="para">
<p>MAKE YOUR BEST FIRST IMPRESSION. Every member of the XFR community should be armed with the tools they need to make a great impression on their future clients and co-workers. For a limited time, we will be offering new members a complete startup kit including a branding design/makeover kit from our in-house creative team, consultation with our consultants network (strategy/legal/accounting), and a basic website with an email address and social media integration through our XFR domain!
</p>
</div>
<div class="price"><span class="fee">$495 ONE TIME FEE</span> <br> <span class="why">WHY IS THIS SO CHEAP?</span></div>
</div>
</div>
<div class="option2">
<div class="heading clearfix">
<div class="headingLeft">
<h1>+ THE XFR OFFICE ASSISTANT</h1>
<span class="addthis">ADD THIS</span>
</div>
<input type="checkbox" name="sellofficeassistant" value="1" id="sellofficeassistant"><label for="sellofficeassistant"><span></span></label>
</div>
<div class="info clearfix">
<div class="para">
<p>THE ULTIMATE BUSINESS TOOLKIT. As small business owners ourselves, we're offering a toolkit that includes everything we wish we had when we were first starting out. This business support package includes live reception services with intercom and custom answering options, a business mailing address and shipping center with forwarding service, office hours with our professional consultants network, discounted access to all XFR classes/events, and a monthly guest-pass allotment. Limited availability!
</p>
</div>
<div class="price"><span class="fee">$195 PER MONTH</span> <br> <span class="why">THE MOST AFFORDABLE EMPLOYEE</span></div>
</div>
</div>
<div class="option2">
<div class="heading clearfix">
<div class="headingLeft">
<h1>+ THE XFR RETAIL SOLUTION</h1>
<span class="addthis">ADD THIS</span>
</div>
<input type="checkbox" name="sellretailsolution" value="1" id="sellretailsolution"><label for="sellretailsolution"><span></span></label>
</div>
<div class="info clearfix">
<div class="para">
<p>A COMPLETE RETAIL ECOSYSTEM. The true cost of owning a retail store becomes apparent when considering all of the operational expenses (rent, employees, insurance, security, etc). We're setting out to remove the high-cost barriers to retail by giving small operations a truly complete solution that includes full-time staffing (our staff becomes your staff), electronic payment processing, e-commerce integration with shipping management, secure inventory storage, and remote monitoring for 24/7 security. </p>
</div>
<div class="price"><span class="fee">$495 PER MONTH</span> <br> <span class="why">A MAIN STREET DREAM COME TRUE</span></div>
</div>
</div>
<div class="toprow">
<input type="text" name="firstname" placeholder="FIRST NAME" class="topz names topz1">
<input type="text" name="lastname" placeholder="LAST NAME" class="topz names">
<input type="text" name="businessname" placeholder="BUSINESS NAME" class="topz names topz1">
<input type="text" name="email" placeholder="EMAIL ADDRESS" class="topz rightz"> </div>
<textarea name="about" placeholder="QUESTIONS AND COMMENTS (OPTIONAL)" class="comments"></textarea>
<textarea name="referrer" placeholder="HOW DID YOU HEAR ABOUT THEXFR (OPTIONAL)" class="comments rightz comments2"></textarea>
<input type="submit" name ="sellsubmit" class="submit3" value="ALL DONE! SUBMIT AND SHARE!">
</form>
</div>
</article>
</div>
<!---end #sellstuff---->
<!---#workstuff---->
<div class="work-wrap">
<article id="workstuff" class="wrap">
<div class="content clearfix">
<form method="post" action="<?php echo htmlentities($_SERVER['PHP_SELF']);?>" id="inputs2" name="work">
<div class="option">
<div class="inner">
<h2>1. SHARED DESK</h2>
<div class="box">
<p> Co-working comes to Main Street! Upgrade from the coffee shop to one of our shared desks in the XFR's beautiful "bullpen," work among likeminded individuals, and benefit from our uncompromising shared resources. </p>
<div class="price">FROM $25 PER DAY<br>OR $245 PER MONTH</div>
</div>
<div class="selectbox clearfix"><span class="selectthis">SELECT THIS</span><input type="radio" name="mainservice" value="shareddesk" id="shareddesk"><label for="shareddesk"><span class="workbttn2"></span></label></div>
</div>
</div>
<div class="option">
<div class="inner">
<h2>2. PRIVATE DESK</h2>
<div class="box">
<p> Co-working with privacy! The XFR offers a limited selection of private one-person offices that offer the perfect mix of isolated workspace and access to our uncompromising shared amenities. Consider this the ultimate "home" office.</p>
<div class="price">FROM $395 PER MONTH</div>
</div>
<div class="selectbox clearfix"><span class="selectthis">SELECT THIS</span><input type="radio" name="mainservice" value="privatedesk" id="privatedesk"><label for="privatedesk"><span class="workbttn2"></span></label></div>
</div>
</div>
<div class="option">
<div class="inner">
<h2>3. TEAM OFFICE</h2>
<div class="box">
<p> Co-working for groups! If you're part of a team that needs space for up to four employees, reserve a private office and enjoy the full XFR experience for your whole team! Customizable layouts are available for your individual needs.</p>
<div class="price">FROM $795 PER MONTH</div>
</div>
<div class="selectbox clearfix"><span class="selectthis">SELECT THIS</span><input type="radio" name="mainservice" value="teamoffice" id="teamoffice"><label for="teamoffice"><span class="workbttn2"></span></label></div>
</div>
</div>
<div class="option">
<div class="inner">
<h2>4. BUILD YOUR OWN</h2>
<div class="box">
<p>Your dream office on Main Street! Our architectural team has designed our spaces with flexibility in mind to best accommodate your individual needs. Let us know what your ideal workspace looks like, and we'll build it together.</p>
<div class="price">NAME YOUR PRICE</div>
</div>
<div class="selectbox clearfix"><span class="selectthis">SELECT THIS</span><input type="radio" name="mainservice" value="customize" id="workcustomize"><label for="workcustomize"><span class="workbttn2"></span></label></div>
</div>
</div>
</div>
<div id="workmore" class="options2">
<div class="content clearfix">
<div class="inner">
<div class="option2">
<div class="heading clearfix">
<div class="headingLeft">
<h1>+ THE XFR STARTUP KIT</h1>
<span class="addthis">ADD THIS</span>
</div>
<input type="checkbox" name="workstartupkit" value="1" id="workstartupkit"><label for="workstartupkit"><span></span></label>
</div>
<div class="info clearfix">
<div class="para">
<p>MAKE YOUR BEST FIRST IMPRESSION. Every member of the XFR community should be armed with the tools they need to make a great impression on their future clients and co-workers. For a limited time, we will be offering new members a complete startup kit including a branding design/makeover kit from our in-house creative team, consultation with our consultants network (strategy/legal/accounting), and a basic website with an email address and social media integration through our XFR domain!
</p>
</div>
<div class="price"><span class="fee">$495 ONE TIME FEE</span> <br> <span class="why">WHY IS THIS SO CHEAP?</span></div>
</div>
</div>
<div class="option2">
<div class="heading clearfix">
<div class="headingLeft">
<h1>+ THE XFR OFFICE ASSISTANT</h1>
<span class="addthis">ADD THIS</span>
</div>
<input type="checkbox" name="workofficeassistant" value="1" id="workofficeassistant"><label for="workofficeassistant"><span></span></label>
</div>
<div class="info clearfix">
<div class="para">
<p>THE ULTIMATE BUSINESS TOOLKIT. As small business owners ourselves, we're offering a toolkit that includes everything we wish we had when we were first starting out. This business support package includes live reception services with intercom and custom answering options, a business mailing address and shipping center with forwarding service, office hours with our professional consultants network, discounted access to all XFR classes/events, and a monthly guest-pass allotment. Limited availability!
</p>
</div>
<div class="price"><span class="fee">$195 PER MONTH</span> <br> <span class="why">THE MOST AFFORDABLE EMPLOYEE</span></div>
</div>
</div>
<div class="option2">
<div class="toprow">
<input type="text" name="firstname" placeholder="FIRST NAME" class="topz names topz1">
<input type="text" name="lastname" placeholder="LAST NAME" class="topz names">
<input type="text" name="businessname" placeholder="BUSINESS NAME" class="topz names topz1">
<input type="text" name="email" placeholder="EMAIL ADDRESS" class="topz rightz"> </div>
<textarea name="about" placeholder="QUESTIONS AND COMMENTS (OPTIONAL)" class="comments"></textarea>
<textarea name="referrer" placeholder="HOW DID YOU HEAR ABOUT THEXFR (OPTIONAL)" class="comments rightz comments2"></textarea>
<input type="submit" name ="worksubmit" class="submit3" value="ALL DONE! SUBMIT AND SHARE!">
</form>
</div>
</article>
</div>
<!---end #workstuff---->
<!---#startstuff---->
<div class="start-wrap">
<article id="startstuff" class="wrap">
<div class="content clearfix">
<form method="post" action="<?php echo htmlentities($_SERVER['PHP_SELF']);?>" id="inputs1">
<div class="option">
<div class="inner">
<h2>1. SAY HELLO</h2>
<div class="box">
<p> The XFR is a place to start. If this concept sounds intriguing but you're not quite sure where to begin, fill out the form below and we'll keep you in the loop as we progress from concept to reality! Thanks for your interest!</p>
<div class="price">SUBSCRIBE AND SHARE</div>
</div>
<div class="selectbox clearfix"><span class="selectthis">SELECT THIS</span><input type="checkbox" name="sayhello" value="1" id="sayhello"><label for="sayhello"><span></span></label></div>
</div>
</div>
</div>
<div id="startmore" class="options2">
<div class="content clearfix">
<div class="inner">
<div class="toprow">
<input type="text" name="firstname" placeholder="FIRST NAME" class="topz names topz1">
<input type="text" name="lastname" placeholder="LAST NAME" class="topz names">
<input type="text" name="businessname" placeholder="BUSINESS NAME" class="topz names topz1">
<input type="text" name="email" placeholder="EMAIL ADDRESS" class="topz rightz"> </div>
<textarea name="about" placeholder="QUESTIONS AND COMMENTS (OPTIONAL)" class="comments"></textarea>
<textarea name="referrer" placeholder="HOW DID YOU HEAR ABOUT THEXFR (OPTIONAL)" class="comments rightz comments2"></textarea>
<input type="submit" name ="startsubmit" class="submit3" value="ALL DONE! SUBMIT AND SHARE!">
</form>
</div>
</div>
</div>
</div>
</article>
<!---end #startstuff---->
</div>
</div>
</div>
</section>
<section id="oldstation">
<img src="images/oldstation.jpg" alt="The Transfer Station">
</section>
<a name="connect" class="marker"></a>
<section id="connect">
<div class="content clearfix">
<div class="column left">
<div class="inner">
<h1>MAKE HISTORY</h1>
<p>Built in 1925 as a power station for Manayunk’s “dinky” trolley line, 114 Green Lane has sat idly on the corner of Main Street and Green Lane for well over two decades. We aim to bring new life to this beautiful historic property, and we hope you’ll join us in lighting it up once again! We’ve been working on The Transfer Station concept for several years now, and it’s our greatest pleasure to finally be able to invite you to become a part of it. Sign up, let us know what you think, and share this concept with friends. Let’s make history in Manayunk. Together.</p>
<p>Adam & Simon Rogers <br>
The Transfer Station Co-Founders</p>
</div>
</div>
<div class="column right">
<div class="inner">
<h1>CONNECT</h1>
<form method="post" action="<?php echo htmlentities($_SERVER['PHP_SELF']);?>">
<input name="name" type="text" placeholder="FIRST AND LAST NAME">
<input name="businessname" type="text" placeholder="BUSINESS NAME">
<input name="email" type="text" placeholder="EMAIL ADDRESS">
<input name="phone" type="text" placeholder="PHONE NUMBER">
<input name="comments" type="text" placeholder="COMMENTS">
<input type="submit" name="submit2" id="submit2" value="SUBMIT">
</form>
<?php echo $connectErrors; ?>
</div>
</div>
</div>
</section>
<footer>
<div class="content clearfx">
<ul class="buttons">
<li><img src="images/facebook2.png" alt="FACEBOOK"></li>
<li><img src="images/twitter2.png" alt="TWITTER"></li>
<li><img src="images/email.png" alt="EMAIL"></li>
<li><img src="images/call.png" alt="CALL"></li>
<li><img src="images/locate.png" alt="MAP"></li>
</ul>
<div class="column" id="column1">
<h3>NAVIGATION</h3>
<ul id="footernav">
<li><a href="#top">TOP</a></li>
<li><a href="#about">ABOUT XFR</a></li>
<li><a href="#layout">THE LAYOUT</a></li>
<li><a href="#membership">MEMBERSHIP</a></li>
<li><a href="#connect">CONNECT</a></li>
<li><a target="_blank" href="http://blog.thexfr.org">BLOG</a></li>
</ul>
</div>
<div class="column" id="column2">
<h3>INORMATION</h3>
<ul>
<li><a href="mailto:[email protected]">[email protected]</a></li>
<li>(267) 908-4104</li>
<li><a target="_blank" href="https://www.facebook.com/thexfr">FACEBOOK.COM/THEXFR</a></li>
<li><a target="_blank" href="http://www.twitter.com/thexfr">TWITTER.COM/THEXFR</a></li>
<li><a target="_blank" href="http://www.instagram.com/thexfr">INSTAGRAM.COM/THEXFR</a></li>
<li>THE TRANSFER STATION</li>
<li class="address">114 GREEN LANE</li>
<li class="address">PHILADELPHIA, PA 19127</li>
</ul>
</div>
<div class="column" id="column3">
<h3>THE XFR TEAM</h3>
<ul class="positions">
<li>ADAM ROGERS <span class="position">CO-FOUNDER + STRATEGIC DIRECTOR</span> <a href="mailto: [email protected]">EMAIL</a></li>
<li>SIMON ROGERS <span class="position">CO-FOUNDER + CREATIVE DIRECTOR</span> <a href="mailto:[email protected]">EMAIL</a></li>
<li>FRANKIE ZELNICK <span class="position">COMMUNICATIONS DIRECTOR</span> <a href="mailto:[email protected]">EMAIL</a></li>
<li>BRIAN MURRAY <span class="position">PARTNER</span></li>
<li>IMAR HUTCHINS <span class="position">PARTNER</span></li>
<li><a target="_blank" href="http://www.makeshift.us">MAKESH/FT</a> <span class="position">OUR SISTER FACILITY FOR MAKERS</span></li>
</ul>
<p>Site created by Transfer Creative. Copyright © 2013 THEXFR LLC. All rights reserved.</p>
</div>
</div>
</footer>
<script>
$(window).resize(function()
{
if ($(window).width() > 700)
{
$('nav').css('display', 'block');
$('nav').removeClass('open');
}
else if ($(window).width() < 701)
{
$('nav').css('display', 'none');
}
});
/*####### STICKY NAV SCRIPT ##########*/
var nav_pos = $('nav').offset().top;
var i = 0;
var sticky_nav = function()
{
var top_pos = $(window).scrollTop(); // our current vertical position from the top
if ( (top_pos > nav_pos) && ($(window).width() > 640) )
{
$('#sticky_navigation').css({ 'position': 'fixed', 'top':0, 'left':0, 'z-index':9999999});
}
else
{
$('#sticky_navigation').css({ 'position': 'relative', 'top':0, 'left':0 });
}
};
$(window).scroll(function()
{
if (i <= 1)
{
nav_pos = $('nav').offset().top;
i = 1;
};
sticky_nav();
});
$(window).resize(function()
{
nav_pos = $('nav').offset().top;
});
$(document).ready(function()
{
$('#navbttn').click(function()
{
$('nav').toggleClass('open');
$('nav').slideToggle(250);
});
});
$(document).ready(function()
{
$('nav ul li').click(function()
{
if (($(window).width() < 640)&&($('nav').hasClass('open'))) {
$('nav').removeClass('open');
$('nav').slideToggle(250);
};
});
});
$(".workbttn2").click(function()
{
$('#workmore').slideDown(400);
});
$(".sellbttn2").click(function()
{
$('#sellmore').slideDown(400);
});
$(".transferbttn2").click(function()
{
$('#transfermore').slideDown(400);
});
$("#start").click(function()
{
$('#start > .inner > .choice1').removeClass('collapsed');
if ($('.start-wrap').hasClass('expanded'))
{
//do nothing;
}
else
{
if ($('.expanded').length)
{
$('#work .inner > .choice1').addClass('collapsed');
$('#sell .inner > .choice1').addClass('collapsed');
$('#transfer .inner > .choice1').addClass('collapsed');
$('.expanded').hide();
$('.expanded').removeClass('expanded');
$('.start-wrap').addClass('expanded');
$('.start-wrap').slideDown(400);
}
else
{
$('.start-wrap').addClass('expanded');
$('.start-wrap').slideDown(400);
};
$('html, body').animate({
scrollTop: $("#startstuff").offset().top - 40
}, 400);
};
});
$("#work").click(function()
{
$('#work > .inner > .choice1').removeClass('collapsed');
if ($('.work-wrap').hasClass('expanded'))
{
//do nothing;
}
else
{
if ($('.expanded').length)
{
$('#start .inner > .choice1').addClass('collapsed');
$('#sell .inner > .choice1').addClass('collapsed');
$('#transfer .inner > .choice1').addClass('collapsed');
$('.expanded').hide();
$('.expanded').removeClass('expanded');
$('.work-wrap').addClass('expanded');
$('.work-wrap').slideDown(400);
}
else
{
$('.work-wrap').addClass('expanded');
$('.work-wrap').slideDown(400);
};
$('html, body').animate({
scrollTop: $("#workstuff").offset().top - 40
}, 400);
};
});
$("#sell").click(function()
{
$('#sell > .inner > .choice1').removeClass('collapsed');
if ($('.sell-wrap').hasClass('expanded'))
{
//do nothing;
}
else
{
if ($('.expanded').length)
{
$('#work .inner > .choice1').addClass('collapsed');
$('#start .inner > .choice1').addClass('collapsed');
$('#transfer .inner > .choice1').addClass('collapsed');