⚝
One Hat Cyber Team
⚝
Your IP:
172.22.0.1
Server IP:
151.80.20.34
Server:
Linux 794f04d97d5e 5.15.0-143-generic #153-Ubuntu SMP Fri Jun 13 19:10:45 UTC 2025 x86_64
Server Software:
Apache/2.4.62 (Debian)
PHP Version:
8.2.28
Buat File
|
Buat Folder
Eksekusi
Dir :
~
/
var
/
www
/
html
/
resources
/
views
/
projects
/
View File Name :
copylink_password.blade.php
@extends('layouts.auth') @php use App\Models\Utility; $logo=\App\Models\Utility::get_file('uploads/logo'); $company_logo=Utility::getValByName('company_logo'); $settings = Utility::settings(); @endphp @section('page-title') {{__('Copylink')}} @endsection @section('auth-topbar') @endsection @section('content') <div class=""> <h2 class="h3">{{__('Password required')}}</h2> <h6>{{ __('This document is password-protected. Please enter a password.') }}</h6> </div> <form method="POST" action="{{ route('projects.link', \Illuminate\Support\Facades\Crypt::encrypt($id)) }}"> @csrf <div class=""> <div class="form-group "> <label class="form-control-label mt-2 mb-2">{{__('Password')}}</label> <div class="input-group input-group-merge"> <input id="password" type="password" class="form-control @error('password') is-invalid @enderror" name="password" required autocomplete="new-password"> @error('password') <span class="invalid-feedback" role="alert"> <strong>{{ $message }}</strong> </span> @enderror </div> </div> <div class="d-grid"> <button type="submit" class="btn-login btn btn-primary btn-block mt-2" >{{__('Save')}}</button> </div> </div> {{Form::close()}} @endsection