Welcome to mirror list, hosted at ThFree Co, Russian Federation.

shorten_result.blade.php « views « resources - github.com/cydrobolt/polr.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 4098acd642cee422279426154e7f1282352ec687 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
@extends('layouts.base')

@section('css')
<link rel='stylesheet' href='/css/shorten_result.css' />
@endsection

@section('content')
<h3>Shortened URL</h3>
<input type='text' class='result-box form-control' value='{{$short_url}}' />
<a id="generate-qr-code" class='btn btn-primary back-btn'>Generate QR Code</a>
<a href='{{route('index')}}' class='btn btn-info back-btn'>Shorten another</a>

<div class="qr-code-container"></div>

@endsection


@section('js')
<script src='/js/qrcode.min.js'></script>
<script src='/js/shorten_result.js'></script>
@endsection