migrate to gtea from bistbucket
This commit is contained in:
33
resources/views/vendor/installer/verify-code.blade.php
vendored
Normal file
33
resources/views/vendor/installer/verify-code.blade.php
vendored
Normal file
@@ -0,0 +1,33 @@
|
||||
@extends('vendor.installer.layouts.master')
|
||||
|
||||
@section('title')
|
||||
<i class="fa fa-key fa-fw" aria-hidden="true"></i>
|
||||
{{ __('Verify Envato Purchase Code') }}
|
||||
@endsection
|
||||
|
||||
@section('container')
|
||||
|
||||
<form method="post" action="{{ route('LaravelInstaller::codeVerifyProcess') }}" class="tabs-wrap">
|
||||
<input type="hidden" name="_token" value="{{ csrf_token() }}">
|
||||
<input type="hidden" name="_tokens" value="purchase_code">
|
||||
<div class="form-group {{ $errors->has('purchase_code') ? ' has-error ' : '' }}">
|
||||
<label for="purchase_code">
|
||||
{{ __('Purchase Code') }}
|
||||
</label>
|
||||
<input type="text" name="purchase_code" id="purchase_code" value="" placeholder="{{ __('Envato purchase code')}}" />
|
||||
@if ($errors->has('purchase_code'))
|
||||
<span class="error-block">
|
||||
<i class="fa fa-fw fa-exclamation-triangle" aria-hidden="true"></i>
|
||||
{{ $errors->first('purchase_code') }}
|
||||
</span>
|
||||
@endif
|
||||
</div>
|
||||
<div class="buttons">
|
||||
<button class="button" type="submit">
|
||||
{{ __('Verify Code') }}
|
||||
<i class="fa fa-angle-right fa-fw" aria-hidden="true"></i>
|
||||
</button>
|
||||
</div>
|
||||
</form>
|
||||
|
||||
@endsection
|
||||
Reference in New Issue
Block a user