mirror of
				https://github.com/pelican-dev/panel.git
				synced 2025-10-31 08:16:51 +01:00 
			
		
		
		
	
		
			
				
	
	
		
			99 lines
		
	
	
		
			4.5 KiB
		
	
	
	
		
			PHP
		
	
	
	
	
	
			
		
		
	
	
			99 lines
		
	
	
		
			4.5 KiB
		
	
	
	
		
			PHP
		
	
	
	
	
	
| {{-- Pterodactyl - Panel --}}
 | |
| {{-- Copyright (c) 2015 - 2017 Dane Everitt <dane@daneeveritt.com> --}}
 | |
| 
 | |
| {{-- This software is licensed under the terms of the MIT license. --}}
 | |
| {{-- https://opensource.org/licenses/MIT --}}
 | |
| @extends('layouts.admin')
 | |
| 
 | |
| @section('title')
 | |
|     Server — {{ $server->name }}: Delete
 | |
| @endsection
 | |
| 
 | |
| @section('content-header')
 | |
|     <h1>{{ $server->name }}<small>Delete this server from the panel.</small></h1>
 | |
|     <ol class="breadcrumb">
 | |
|         <li><a href="{{ route('admin.index') }}">Admin</a></li>
 | |
|         <li><a href="{{ route('admin.servers') }}">Servers</a></li>
 | |
|         <li><a href="{{ route('admin.servers.view', $server->id) }}">{{ $server->name }}</a></li>
 | |
|         <li class="active">Delete</li>
 | |
|     </ol>
 | |
| @endsection
 | |
| 
 | |
| @section('content')
 | |
| <div class="row">
 | |
|     <div class="col-xs-12">
 | |
|         <div class="nav-tabs-custom nav-tabs-floating">
 | |
|             <ul class="nav nav-tabs">
 | |
|                 <li><a href="{{ route('admin.servers.view', $server->id) }}">About</a></li>
 | |
|                 @if($server->installed === 1)
 | |
|                     <li><a href="{{ route('admin.servers.view.details', $server->id) }}">Details</a></li>
 | |
|                     <li><a href="{{ route('admin.servers.view.build', $server->id) }}">Build Configuration</a></li>
 | |
|                     <li><a href="{{ route('admin.servers.view.startup', $server->id) }}">Startup</a></li>
 | |
|                     <li><a href="{{ route('admin.servers.view.database', $server->id) }}">Database</a></li>
 | |
|                     <li><a href="{{ route('admin.servers.view.manage', $server->id) }}">Manage</a></li>
 | |
|                 @endif
 | |
|                 <li class="tab-danger active"><a href="{{ route('admin.servers.view.delete', $server->id) }}">Delete</a></li>
 | |
|                 <li class="tab-success"><a href="{{ route('server.index', $server->uuidShort) }}"><i class="fa fa-external-link"></i></a></li>
 | |
|             </ul>
 | |
|         </div>
 | |
|     </div>
 | |
| </div>
 | |
| <div class="row">
 | |
|     <div class="col-md-6">
 | |
|         <div class="box">
 | |
|             <div class="box-header with-border">
 | |
|                 <h3 class="box-title">Safely Delete Server</h3>
 | |
|             </div>
 | |
|             <div class="box-body">
 | |
|                 <p>This action will attempt to delete the server from both the panel and daemon. If either one reports an error the action will be cancelled.</p>
 | |
|                 <p class="text-danger small">Deleting a server is an irreversible action. <strong>All server data</strong> (including files and users) will be removed from the system.</p>
 | |
|             </div>
 | |
|             <div class="box-footer">
 | |
|                 <form action="{{ route('admin.servers.view.delete', $server->id) }}" method="POST">
 | |
|                     {!! csrf_field() !!}
 | |
|                     <button type="submit" class="btn btn-danger">Safely Delete This Server</button>
 | |
|                 </form>
 | |
|             </div>
 | |
|         </div>
 | |
|     </div>
 | |
|     <div class="col-md-6">
 | |
|         <div class="box box-danger">
 | |
|             <div class="box-header with-border">
 | |
|                 <h3 class="box-title">Force Delete Server</h3>
 | |
|             </div>
 | |
|             <div class="box-body">
 | |
|                 <p>This action will attempt to delete the server from both the panel and daemon. If the daemon does not respond, or reports an error the deletion will continue.</p>
 | |
|                 <p class="text-danger small">Deleting a server is an irreversible action. <strong>All server data</strong> (including files and users) will be removed from the system. This method may leave dangling files on your daemon if it reports an error.</p>
 | |
|             </div>
 | |
|             <div class="box-footer">
 | |
|                 <form action="{{ route('admin.servers.view.delete', $server->id) }}" method="POST">
 | |
|                     {!! csrf_field() !!}
 | |
|                     <input type="hidden" name="force_delete" value="1" />
 | |
|                     <button type="submit" class="btn btn-danger">Forcibly Delete This Server</button>
 | |
|                 </form>
 | |
|             </div>
 | |
|         </div>
 | |
|     </div>
 | |
| </div>
 | |
| @endsection
 | |
| 
 | |
| @section('footer-scripts')
 | |
|     @parent
 | |
|     <script>
 | |
|     $('form[data-action="delete"]').submit(function (event) {
 | |
|         event.preventDefault();
 | |
|         swal({
 | |
|             title: '',
 | |
|             type: 'warning',
 | |
|             text: 'Are you sure that you want to delete this server? There is no going back, all data will immediately be removed.',
 | |
|             showCancelButton: true,
 | |
|             confirmButtonText: 'Delete',
 | |
|             confirmButtonColor: '#d9534f',
 | |
|             closeOnConfirm: false
 | |
|         }, function () {
 | |
|             event.target.submit();
 | |
|         });
 | |
|     });
 | |
|     </script>
 | |
| @endsection
 | 
