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
- var data = [ | |
- { | |
- clist: ['#f6ba96', '#e2795b'], | |
- title: 'gingerbread', | |
- ptext: 'Soufflé cake brownie ice cream' | |
- }, | |
- { | |
- clist: ['#a2d5d0', '#8dcbbc'], | |
- title: 'brownie', | |
- ptext: 'Soufflé cake brownie ice cream' |
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
{} |
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 id="wrapper"> | |
<div class="verify-code"> | |
<input class="form-control code-1" tabindex="0" type="number" maxlength="1" size="1" min="0" max="9" /> | |
<input class="form-control code-2" tabindex="1" type="number" maxlength="1" size="1" min="0" max="9" /> | |
<input class="form-control code-3" tabindex="2" type="number" maxlength="1" size="1" min="0" max="9" /> | |
<input class="form-control code-4" tabindex="3" type="number" maxlength="1" size="1" min="0" max="9" /> | |
</div> | |
<h1></h1> | |
</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
<?php | |
namespace App\Http\Controllers; | |
use App\album; | |
use Illuminate\Http\File; | |
use Illuminate\Http\Request; | |
use Illuminate\Support\Facades\Storage; | |
class AlbumController extends Controller |