mirror of
https://github.com/cydrobolt/polr.git
synced 2024-11-10 04:02:28 +01:00
16 lines
397 B
PHP
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
|