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: fcbbb8f2e9a5a5011a43e05f520b7236326d53a7 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
@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 href='{{route('index')}}' class='btn btn-info back-btn'>Shorten another</a>
@endsection

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