This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
Class SendSMS { | |
public $phone_number; | |
public function __construct($phone_number) { | |
$this->phone_number = $phone_number; | |
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<form class="custom"> | |
<div class="row"> | |
<div class="large-4 columns"> | |
<label for="radio1"><input name="radio1" type="radio" id="radio1" style="display:none;" CHECKED><span class="custom radio checked"></span> Radio Button 1</label> | |
<label for="radio1"><input name="radio1" type="radio" id="radio1" style="display:none;"><span class="custom radio"></span> Radio Button 2</label> | |
<label for="radio1"><input name="radio1" type="radio" id="radio1" disabled style="display:none;"><span class="custom radio"></span> Radio Button 3</label> | |
</div> | |
<div class="large-4 columns"> | |
<label for="checkbox1"><input type="checkbox" id="checkbox1" style="display: none;"><span class="custom checkbox"></span> Label for Checkbox</label> | |
<label for="checkbox2"><input type="checkbox" id="checkbox2" CHECKED style="display: none;"><span class="custom checkbox checked"></span> Label for Checkbox</label> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<form class="custom"> | |
<div class="row"> | |
<div class="large-6 columns"> | |
<div class="row collapse"> | |
<div class="large-9 small-9 columns"> | |
<span class="prefix">mysubdomain</span> | |
</div> | |
<div class="large-3 small-3 columns"> | |
<select> | |
<option>.com</option> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<form class="custom"> | |
<div class="row"> | |
<div class="large-6 columns"> | |
<div class="row collapse"> | |
<div class="large-9 small-9 columns"> | |
<span class="prefix">mysubdomain</span> | |
</div> | |
<div class="large-3 small-3 columns"> | |
<select> | |
<option>.com</option> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<div class="slideshow-wrapper"> | |
<div class="preloader"></div> | |
<ul data-orbit> | |
<li> | |
<img src="http://lorempixel.com/1000/400/nature/1" /> | |
<div class="orbit-caption">Test Caption 1</div> | |
</li> | |
<li> | |
<img src="http://lorempixel.com/1000/400/nature/2" /> | |
<div class="orbit-caption">Test Caption 2</div> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
$(document).foundation('orbit', { | |
animation: 'fade', | |
timer_speed: 10000, | |
pause_on_hover: true, | |
resume_on_mouseout: false, | |
animation_speed: 500, | |
stack_on_small: true, | |
navigation_arrows: true, | |
slide_number: true, | |
container_class: 'orbit-container', |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<ul data-orbit data-options="timer_speed:2500; bullets:false;"> | |
... | |
</ul> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<ul class="clearing-thumbs" data-clearing> | |
<li><a class="" href="http://lorempixel.com/1000/400/nature/1"><img data-caption="Image Caption / Description" src="http://lorempixel.com/200/200/nature/1" /></a></li> | |
<li><a class="" href="http://lorempixel.com/1000/400/nature/2"><img data-caption="Image Caption / Description" src="http://lorempixel.com/200/200/nature/2" /></a></li> | |
<li><a class="" href="http://lorempixel.com/1000/400/nature/3"><img data-caption="Image Caption / Description" src="http://lorempixel.com/200/200/nature/3" /></a></li> | |
</ul> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<div data-alert class="alert-box"> | |
This is a standard alert (div.alert-box). | |
<a href="" class="close">×</a> | |
</div> | |
<div data-alert class="alert-box radius"> | |
This is a radius alert (div.alert-box.radius). | |
<a href="" class="close">×</a> | |
</div> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<div class="row"> | |
<div class="large-12 columns"> | |
<div class="row"> | |
<div class="large-6 columns"> | |
<div class="panel"> | |
<h5>This is a regular panel.</h5> | |
<p>It has an easy to override visual style, and is appropriately subdued.</p> | |
</div> | |
</div> | |
<div class="large-6 columns"> |
OlderNewer