1
0
mirror of https://github.com/cydrobolt/polr.git synced 2024-09-20 07:31:53 +02:00
polr/resources/views/shorten_result.blade.php
2015-11-06 17:48:06 -05:00

16 lines
397 B
PHP

@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