-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathplay.html
More file actions
5057 lines (4096 loc) · 189 KB
/
play.html
File metadata and controls
5057 lines (4096 loc) · 189 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
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
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/css/bootstrap.min.css" integrity="sha384-BVYiiSIFeK1dGmJRAkycuHAHRg32OmUcww7on3RYdg4Va+PmSTsz/K68vbdEjh4u" crossorigin="anonymous">
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/js/bootstrap.min.js" integrity="sha384-Tc5IQib027qvyjSMfHjOMaLkfuWVxZxUPnCJA7l2mCWNIpG9mGCD8wGNIcPD7Txa" crossorigin="anonymous"></script>
<script src="https://use.fontawesome.com/690f9bd560.js"></script>
<link rel="stylesheet" href="https://www.renticity.com/styles/app.css">
<div class="design container">
<marquee><h2>Play Center - "Has design gone too far?!"</h2></marquee>
<h3>Sign Up Sell</h3>
<p class="uppercase bold italics small">Pro Is Normal, Free vs. Free</p>
<style>
.pro_subscribe {}
.pro_subscribe li {
line-height: 1.8em;
}
.pro_subscribe li .fa {
width: 25px;
}
</style>
<div class="row pro_subscribe">
<div class="col-sm-6">
<h2>Create Account</h2>
<div class="row">
<div class="col-sm-6">
<div class="form-group">
<label for="inputEmail3" class="control-label">First Name</label>
<input type="email" class="form-control" id="inputEmail3" placeholder="First Name">
</div>
</div>
<div class="col-sm-6">
<div class="form-group">
<label for="inputEmail3" class="control-label">Last Name</label>
<input type="email" class="form-control" id="inputEmail3" placeholder="Last Name">
</div>
</div>
</div>
<div class="row">
<div class="col-sm-6">
<div class="form-group">
<label for="inputEmail3" class="control-label">Email</label>
<input type="email" class="form-control" id="inputEmail3" placeholder="Email">
</div>
</div>
<div class="col-sm-6">
<div class="form-group">
<label for="inputEmail3" class="control-label">Password</label>
<input type="email" class="form-control" id="inputEmail3" placeholder="Password">
</div>
</div>
</div>
<br>
<div class="row">
<div class="col-sm-6 col-sm-offset-3">
<button type="button" class="btn btn-primary btn-block">
Try Pro FREE for 30 Days
</button>
<p class="text-center">
or
</p>
<button type="button" class="btn btn-link underline btn-block">
Just take me to a free lease.
</button>
</div>
</div>
</div>
<div class="col-sm-6">
<div class="well">
<h2 class="hardblue">Renticity Pro</h2>
<p class="italics bold">
Unlimited units, unlimited renters, one price.
</p>
<ul>
<li>
<i class="fa fa-check blue"></i>
Share Online Listings with Renters
</li>
<li>
<i class="fa fa-check blue"></i>
Compare Local Listings for Price, Amenities
</li>
<li>
<i class="fa fa-check blue"></i>
Digital Applications and Tenant Screening
</li>
<li>
<i class="fa fa-check blue"></i>
3 Leases, 29 Addendums and Forms
</li>
<li>
<i class="fa fa-check blue"></i>
eLease Signing and Document Storage
</li>
<li>
<i class="fa fa-check blue"></i>
Online Rent, Deposit, and Utility Payments
</li>
</ul>
<p class="">
It's free to start, there are no commitments,
and no-hassle, anytime cancel.
</p>
</div>
</div>
</div>
<h3>Circle of Death</h3>
<p class="uppercase bold italics small">Inspired by customer feedback.</p>
<style>
.circle_of_death {
position: relative;
height: 100px;
width: 100px;
animation: circle 10s linear infinite;
}
@keyframes circle {
0% {transform: rotate(0deg);}
50% {transform: rotate(180deg);}
100% {transform: rotate(359deg);}
}
.circle_of_death .head {
position: absolute;
width: 50px;
height: 50px;
background: #333;
border-radius: 50%;
top:0;
left: 0;
}
.circle_of_death .jaw {
position: absolute;
width: 30px;
height: 30px;
top: 35px;
left: 11px;
background: #333;
}
.circle_of_death .eye1 {
width: 10px;
height: 10px;
background: white;
position: absolute;
top: 15px;
left: 10px;
}
.circle_of_death .eye2 {
width: 10px;
height: 10px;
background: white;
position: absolute;
top: 20px;
left: 30px;
}
.circle_of_death .tooth1 {
width: 5px;
height: 10px;
background: white;
position: absolute;
top: 55px;
left: 28px;
}
.circle_of_death .tooth2 {
width: 5px;
height: 10px;
background: white;
position: absolute;
top: 55px;
left: 18px;
}
.circle_of_death .nose {
background: white;
position: absolute;
top: 32px;
left: 20px;
border-right: 10px solid #333;
border-bottom: 10px solid white;
}
</style>
<div class="circle_of_death">
<div class="head"></div>
<div class="jaw"></div>
<div class="eye1"></div>
<div class="eye2"></div>
<div class="tooth1"></div>
<div class="tooth2"></div>
<div class="nose"></div>
</div>
<br>
<h3>Holding Screens</h3>
<p class="uppercase bold italics small">Turtle strat</p>
<div class="alertInline alertLarge alert-info" role="alert">
<i class="fa fa-upload"></i>
<div>
Renticity is currently working on upgrading our payment solution.
We will be releasing these new features to you over the course of the next few hours.
If you have any questions you can reach out to us at
<a mail-type="support" mail-subject="Test MailTo" data-renticity-mail-to-directive target="_blank" class="underline">support@renticity.com</a>.
Stay tuned!
</div>
</div>
<div class="row">
<div class="col-md-4 col-xs-12">
<div class="secure-box row">
<div class="header">
<i class="fa fa-lock"></i> Secure Payment
<div class="ccards pull-right">
<span class="visa" data-ng-class="{visa_valid: cardType.type == 'Visa' && cardType.valid != 'inValid'}"></span>
<span class="mc" data-ng-class="{mc_valid: cardType.type == 'MasterCard' && cardType.valid != 'inValid'}"></span>
<span class="amex" data-ng-class="{amex_valid: cardType.type == 'AMEX' && cardType.valid != 'inValid'}"></span>
<span class="disc" data-ng-class="{disc_valid: cardType.type == 'Discover' && cardType.valid != 'inValid'}"></span>
</div>
</div>
<div class="padded text-center big">
<h2>Payment Being Upgraded</h2>
Renticity is currently working on upgrading our payments feature. If you need to submit an application use:
<br>
<br>
<div class="big">Promo Code: <span class="underline bold">luckyday</span></div>
<br>
If you have any questions you can reach out to us at
<a mail-type="support" mail-subject="Test MailTo" data-renticity-mail-to-directive target="_blank" class="underline">support@renticity.com</a>.
</div>
</div>
</div>
</div>
<h3>Social Buttons</h3>
<p class="uppercase bold italics small">YOU WILL SIGN UP, YOU WILL COMPLY</p>
<button class="btn btn-default facebook">
<i class="fa fa-facebook-official"></i>
Facebook
</button>
<button class="btn btn-default google">
<i class="fa fa-google-plus"></i>
Google
</button>
<h3>Section Example</h3>
<p class="uppercase bold italics small">For people who can read good and wanna learn to do other stuff good too</p>
<div class="row">
<div class="col-md-4 col-sm-6 col-xs-12">
<h3>
SectionHeading
</h3>
<p class="small">
A small blub explaining what blue is going on.
</p>
</div>
<div class="col-md-4 col-sm-6 col-xs-12">
<label class="bold">
NameofElement
</label>
<input id="" type="text" class="form-control" placeholder="Name">
<a id="" href="#" class="btn btn-default btn-outline">
<i class="fa fa-bomb"></i>
Click Me
</a>
</div>
</div>
<h3>Dashboard Signs</h3>
<p class="uppercase bold italics small">This is in order for dashboard.</p>
<p>Note: The following are examples.</p>
<div class="alertInline alertLarge alert-success" role="alert">
<div class="fa fa-stack">
<i class="fa fa-circle fa-stack-2x"></i>
<i class="fa fa-star fa-stack-1x fa-inverse"></i>
</div>
<div>
Renticity Pro gives landlords the ability to sign e-leases and collect rent. It's all fast, online, and only <span class="underline">$10 / month</span>.
</div>
<button class="btn btn-primary btn-lg xs-block">Subscribe Now</button>
</div>
<br>
<div class="alertInline alertLarge alert-error" role="alert">
<i class="fa fa-credit-card"></i>
<div>
Features have been disabled because your credit card on file has expired. To gain access to all features you will need to update your card information.
</div>
<button class="btn btn-danger btn-lg xs-block">Pay rent now!</button>
</div>
<br>
<div class="alertInline alertLarge alert-info" role="alert">
<i class="fa fa-question-circle-o"></i>
<div>
A sole proprietor files taxes with their personal tax ID. If you have a separate business tax ID, select LLC from the options.
</div>
<button class="btn btn-default btn-outline btn-lg xs-block">Pay rent now!</button>
</div>
<br>
<div class="alertInline alertLarge alert-default" role="alert">
<i class="fa fa-question-circle-o"></i>
<div>
A sole proprietor files taxes with their personal tax ID. If you have a separate business tax ID, select LLC from the options.
</div>
<button class="btn btn-default btn-outline btn-lg xs-block">Pay rent now!</button>
</div>
<br>
<div class="bold">Basic</div>
<ol>
<li>KBA</li>
<li>Create Listing</li>
<li>Invite to Apply</li>
<li>Pay Subscribe</li>
</ol>
<br>
<div class="alertInline alertLarge alert-success" role="alert">
<div class="fa fa-stack">
<i class="fa fa-circle fa-stack-2x"></i>
<i class="fa fa-check fa-stack-1x fa-inverse"></i>
</div>
<div>
Welcome to Renticity! Let's get you started. For your protection and renter safety, you need to become Verified.
A Verified Landlord is able to accept applications, view screening reports, and collect rent payments.
</div>
<button class="btn btn-primary btn-lg xs-block">Start Verification</button>
</div>
<br>
<div class="alertInline alertLarge alert-success" role="alert">
<i class="fa fa-building-o"></i>
<div>
Create listings to share your property, accept applications, assign leases, and collect payments.
</div>
<button class="btn btn-primary btn-lg xs-block">Create Listing</button>
</div>
<br>
<div class="alertInline alertLarge alert-success" role="alert">
<i class="fa fa-envelope-square"></i>
<div>
Invite renters to apply to your listing. Renter applications are already screened when you receive them. All you need is the renter’s email address to get started.
</div>
<button class="btn btn-primary btn-lg xs-block">Invite Renter</button>
</div>
<br>
<div class="alertInline alertLarge alert-success" role="alert">
<div class="fa fa-stack">
<i class="fa fa-circle fa-stack-2x"></i>
<i class="fa fa-star fa-stack-1x fa-inverse"></i>
</div>
<div>
Sign leases and collect rent with Renticity Pro. It’s free to try for 30 days.
</div>
<button class="btn btn-primary btn-lg xs-block">Try Pro</button>
</div>
<hr>
<div class="bold">Pro</div>
<ol>
<li>Create Customer</li>
<li>KBA</li>
<li>Create Listing</li>
<li>Invite to Apply</li>
<li>Create Lease</li>
<li>Verify 2-Drop</li>
<li>Create Invoice</li>
</ol>
<br>
<div class="alertInline alertLarge alert-success" role="alert">
<i class="fa fa-money"></i>
<div>
Payment Accounts are how you send rent invoices and receive payments online. Create your account early to ensure you receive rent on time.
</div>
<button class="btn btn-primary btn-lg xs-block">Create Account</button>
</div>
<br>
<div class="alertInline alertLarge alert-success" role="alert">
<i class="fa fa-bank"></i>
<div>
We will be depositing two small amounts in your account in the next few days.<br/>
Enter the deposit amounts corresponding to the following line items in your bank statement...<br/>
[mm/dd/yyyy] Electronic Deposit Paystand.com $0.xx<br/>
[mm/dd/yyyy] Electronic Deposit Paystand.com $0.xx
</div>
<button class="btn btn-primary btn-lg xs-block">Confirm Amounts</button>
</div>
<br>
<div class="alertInline alertLarge alert-success" role="alert">
<div class="fa fa-stack">
<i class="fa fa-circle fa-stack-2x"></i>
<i class="fa fa-check fa-stack-1x fa-inverse"></i>
</div>
<div>
Become a Verified Landlord to accept applications and view screening reports.
</div>
<button class="btn btn-primary btn-lg xs-block">Start Verification</button>
</div>
<br>
<div class="alertInline alertLarge alert-success" role="alert">
<i class="fa fa-building-o"></i>
<div>
Create listings to share your property, accept applications, assign leases, and collect payments.
</div>
<button class="btn btn-primary btn-lg xs-block">Create Listing</button>
</div>
<br>
<div class="alertInline alertLarge alert-success" role="alert">
<i class="fa fa-envelope-square"></i>
<div>
Invite renters to apply to your listing. Renter applications are already screened when you receive them. All you need is the renter’s email address to get started.
</div>
<button class="btn btn-primary btn-lg xs-block">Invite Renter</button>
</div>
<br>
<div class="alertInline alertLarge alert-success" role="alert">
<i class="fa fa-paste"></i>
<div>
Use Renticity’s lease or upload your own PDF to start drafting a lease. Fill out fields, add signatures, and sent it to renters to sign. A renter will need to submit an approved application to sign a lease.
</div>
<button class="btn btn-primary btn-lg xs-block">Create Lease</button>
</div>
<br>
<div class="alertInline alertLarge alert-success" role="alert">
<div class="fa fa-stack">
<i class="fa fa-folder fa-stack-2x"></i>
<i class="fa fa-dollar fa-stack-1x fa-inverse"></i>
</div>
<div>
Create and send invoices to collect rent online. A renter’s email address is all you need to get started.
</div>
<button class="btn btn-primary btn-lg xs-block">Create Invoice</button>
</div>
<h3>Timelines</h3>
<p class="uppercase bold italics small">Ya no.</p>
<style>
.wordpress {
position: relative;
/*padding-bottom: 50%;*/
padding-top: 35px;
height: 400px;
overflow: hidden;
}
.wordpress iframe {
position: absolute;
top:0;
left: 0;
width: 100%;
height: 100%;
}
</style>
<div class="row">
<div class="col-sm-4 col-xs-12">
<a class="twitter-timeline" href="https://twitter.com/Renticity" data-widget-id="707714184931192833">Tweets by @Renticity</a>
<script>!function(d,s,id){var js,fjs=d.getElementsByTagName(s)[0],p=/^http:/.test(d.location)?'http':'https';if(!d.getElementById(id)){js=d.createElement(s);js.id=id;js.src=p+"://platform.twitter.com/widgets.js";fjs.parentNode.insertBefore(js,fjs);}}(document,"script","twitter-wjs");</script>
</div>
<div class="col-sm-4 col-xs-12">
<div class="wordpress">
<a class="wordpress-timeline" href="https://newschoollandlord.com" lang="en" data-theme="light" data-link-color="#000000" width="300" height="500">WordPress.com News</a>
<script type="text/javascript">(function(d){var f = d.getElementsByTagName('SCRIPT')[0], p = d.createElement('SCRIPT');p.type = 'text/javascript';p.async = true;p.src = '//widgets.wp.com/platform.js';f.parentNode.insertBefore(p,f);}(document));</script>
</div>
</div>
<div class="col-sm-4 col-xs-12">
<div style="position: relative; height: 0; overflow: hidden; padding-top:166.66666666666669%;"><iframe src="//widgets-code.websta.me/w/590ac311c8c4?ck=MjAxNi0wNC0yMlQyMjoxNjoxNC41OTda" class="websta-widgets" allowtransparency="true" frameborder="0" scrolling="no" style="position: absolute; top: 0; left: 0; width: 100%; height: 100%;"></iframe> <!-- WEBSTA WIDGETS - widgets.websta.me --></div>
</div>
</div>
<!--<iframe src="https://www.facebook.com/plugins/page.php?href=https%3A%2F%2Fwww.facebook.com%2Frenticity&tabs=timeline&width=340&height=600&small_header=true&adapt_container_width=true&hide_cover=true&show_facepile=false&appId" width="340" height="600" style="border:none;overflow:hidden" scrolling="no" frameborder="0" allowTransparency="true"></iframe>-->
<br><br>
<h3>Expanding Badges 2</h3>
<p class="uppercase bold italics small">Waaay cooler than a tooltip.</p>
<style>
.dynamic-badge2 {
border: 1px solid #46B7E7;
border-radius: 999px;
display: inline-block;
color: #46B7E7;
height: 21px;
}
.dynamic-badge2 .visable-label {
display: inline-block;
font-size: 12px;
/* width: 23px; */
text-align: center;
position: relative;
top: -10px;
left: -2px;
width: 15px;
}
.dynamic-badge2 .hidden-label {
width: 0px;
display: inline-block;
overflow: hidden;
position: relative;
top: -2px;
left: 10px;
transition: .15s width;
}
.dynamic-badge2:hover .hidden-label {
width: 100px;
transition: .15s width;
}
</style>
<div class="dynamic-badge2">
<div class="visable-label">
<span class="fa-stack">
<i class="fa fa-circle fa-stack-2x blue"></i>
<i class="fa fa-star fa-stack-1x fa-inverse"></i>
</span>
</div>
<div class="hidden-label">
Pro Account
</div>
</div>
<div class="pull-right">
<div class="dynamic-badge2">
<div class="visable-label">
<span class="fa-stack">
<i class="fa fa-circle fa-stack-2x blue"></i>
<i class="fa fa-star fa-stack-1x fa-inverse"></i>
</span>
</div>
<div class="hidden-label">
Pro Account
</div>
</div>
</div>
<br>
<h3>Centering Code v.3</h3>
<p class="uppercase bold italics small">Ok ok ok, this will surely do it this time!</p>
<style>
.block3 {
height: 400px;
position: relative;
border: 1px solid red;
}
.block3 .centered {
margin: 0;
position: absolute;
top: 50%;
left: 50%;
margin-right: -50%;
transform: translate(-50%, -50%);
}
.block3 img {
max-width: 100%;
}
</style>
<div class="row">
<div class="col-sm-6 col-sm-push-6 col-xs-12">
<div class="block3">
<div class="centered">
<img src="../../images/castle.jpg"/>
</div>
</div>
</div>
<div class="col-sm-6 col-sm-pull-6 col-xs-12">
<div class="block3">
<div class="centered">
<h1>Some text</h1>
<p>Booking like men going towards that ship a while ago?"</p>
</div>
</div>
</div>
</div>
<h3>Graphic Button</h3>
<p class="uppercase bold italics small">Shamelessly stolen, but that's a design thing</p>
<style>
.btn-graphic {}
.btn-graphic {
background: transparent;
border: 2px solid #0076BD;
border-radius: 0;
position: relative;
transform: none;
transition: all .2s;
}
.btn-graphic:before {
content: '';
position: absolute;
width: 100%;
height: 100%;
top: 7px;
left: -7px;
background: rgba(70,183,231,.5);
z-index: -1;
transition: all .2s;
}
.btn-graphic:hover,
.btn-graphic:focus {
transform: none;
}
.btn-graphic:hover:before,
.btn-graphic:focus:before {
top: 0;
left: 0;
transition: all .2s;
}
</style>
<button type="button" class="btn btn-graphic">
<i class="fa fa-dollar"></i>
Buy This
</button>
<!-- https://onedayout.io/ -->
<style>
.dashstep {}
.dashstep .card {
text-align: center;
padding: 10px 10px 20px 10px;
}
.dashstep .card img {
max-width: 120px;
margin: 15px 10px;
-webkit-filter: grayscale(100%);
filter: grayscale(100%);
transition: .15s;
}
.dashstep .card:hover img,
.dashstep .card.active img {
-webkit-filter: grayscale(0%);
filter: grayscale(0%);
transition: .15s;
}
.dashstep .card.active {
box-shadow: 0 0 2px #46B7E7;
border: 1px solid #46B7E7;
pointer-events: none;
}
.dashstep .card p {
min-height: 100px;
margin: 10px 10px 0px 10px;
}
.dashstep .card h3 {color: #323333;}
.dashstep .card .done {
font-size: 25px;
padding-bottom: 1px;
}
</style>
<h3>DashStep</h3>
<p class="uppercase bold italics small">Holding your hand means I love you as my customer.</p>
<style>
.dashstep {}
.dashstep .card {
text-align: center;
padding: 10px 10px 20px 10px;
}
.dashstep .card img {
max-width: 120px;
margin: 15px 10px;
-webkit-filter: grayscale(100%);
filter: grayscale(100%);
transition: .15s;
}
.dashstep .card:hover img,
.dashstep .card.active img {
-webkit-filter: grayscale(0%);
filter: grayscale(0%);
transition: .15s;
}
.dashstep .card.active {
box-shadow: 0 0 2px #46B7E7;
border: 1px solid #46B7E7;
pointer-events: none;
}
.dashstep .card p {
min-height: 100px;
margin: 10px 10px 0px 10px;
}
.dashstep .card h3 {color: #323333;}
.dashstep .card .done {
font-size: 25px;
padding-bottom: 1px;
}
</style>
<h2>Let's get you started!</h2>
<div class="row dashstep">
<div class="col-sm-3">
<div class="card text-center">
<h3 class="bold">
Create Listing
</h3>
<img src="/../../images/badges/alt/pin.png" alt="listing">
<p>
Upload images, add ammenities, and share what makes your community special.
</p>
<button type="button" class="btn btn-primary">
<i class="fa fa-plus"></i> Create Listing
</button>
</div>
</div>
<div class="col-sm-3">
<div class="card text-center">
<h3 class="bold">
Become Verified
</h3>
<img src="/../../images/badges/alt/verified.png" alt="listing">
<p>
Renters are more likely to favorite, message, and apply to verified landlords.
</p>
<div>
<button type="button" class="btn btn-primary">
<i class="fa fa-check-circle"></i> Become Verified
</button>
</div>
</div>
</div>
<div class="col-sm-3">
<div class="card text-center">
<h3 class="bold">
Accept Application
</h3>
<img src="/../../images/badges/alt/report.png" alt="listing">
<p>
Invite a renter to apply and screen them instantly. No waiting, no phone calls.
</p>
<div>
<button type="button" class="btn btn-primary">
<i class="fa fa-share-alt"></i> Invite Renter
</button>
</div>
</div>
</div>
<div class="col-sm-3">
<div class="card text-center">
<h3 class="bold">
Draft Lease
</h3>
<img src="/../../images/badges/alt/sign.png" alt="listing">
<p>
If you have a lease you already trust, upload it and start drafting your digital lease.
</p>
<div>
<button type="button" class="btn btn-primary">
<i class="fa fa-upload"></i> Draft Lease
</button>
</div>
</div>
</div>
</div>
<h3>The Social Belt</h3>
<p class="uppercase bold italics small">Holding up nothing but broken dreams and your inflated sense of self.</p>
<style>
.social_belt {
background: #525556;
padding: 20px;
}
</style>
<div class="social_belt">
<ul>
<li>
<a href="/">
<i class="fa fa-facebook"></i>
</a>
</li>
<li>
<a href="/">
<i class="fa fa-instagram"></i>
</a>
</li>
<li>
<a href="/">
<i class="fa fa-twitter"></i>
</a>
</li>
<li>
<a href="/">
<i class="fa fa-google-plus"></i>
</a>
</li>
<li>
<a href="/">
<i class="fa fa-envelope-o"></i>
</a>
</li>
</ul>
</div>
<h3>Mobile Warning</h3>
<p class="uppercase bold italics small">SoLoMo.. or SoMoLo.. or, what ever.</p>
<!-- Button trigger modal -->
<button class="btn btn-default btn-outline" data-toggle="modal" data-target="#myModal">
<i class="fa fa-bomb"></i>Boom goes the modal
</button>
<!-- Modal -->
<div class="modal fade" id="myModal" tabindex="-1" role="dialog" aria-labelledby="myModalLabel" aria-hidden="true">
<div class="modal-dialog">
<div class="modal-content">
<div class="modal-header">
<button type="button" class="close" data-dismiss="modal"><span aria-hidden="true"><i class="fa fa-close"></i></span><span class="sr-only">Close</span></button>
<h2 class="modal-title">We're in mobile beta</h2>
</div>
<div class="modal-body text-center">
<img class="mobile-warning" src="../images/badges/device.png" alt="traffic cone">
<p>
We are testing LeaseConverter™ on a variety of mobile devices. If there are quirks, let us know at
<a mail-type="support" mail-subject="LeaseConverter on my mobile device was a bit weird." data-renticity-mail-to-directive target="_blank">info@renticity.com</a>.
</p>
</div>
<div class="modal-footer">
<button type="button" class="btn btn-link" data-dismiss="modal">Back</button>
<button type="button" class="btn btn-primary">Try it anyway</button>
</div>
</div>
</div>
</div>
<h3>"Grail" Form</h3>
<p class="uppercase bold italics small">Still chasing the dream of the perfect form.</p>
<form class="grail-form">
<hr>
<!--Blank Input-->
<div class="row">
<label class="col-xs-12" for="emailEx">
Home address
<span class="pink">
*
</span>
</label>
<div class="col-sm-6 col-xs-12">
<input type="text" class="form-control" id="emailEx" placeholder="Required">
</div>
<div class="col-sm-6 col-xs-12">
<p class="help">
Do you live in your parent's basement?
</p>
</div>
</div>